You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.
The WITH function is quite useful. I'd be interested in a way to determine if a variable used in a formula is a local variable (i.e., defined using WITH) or a global variable (i.e., expected to be passed in when the formula function is called).
For example, take this formula "WITH(a, 1, a + b)". a would be a local variable and b would be a global variable.
Thinking the best way to do this for now is to use the ast, collecting local variables defined with WITH.
The text was updated successfully, but these errors were encountered:
The
WITH
function is quite useful. I'd be interested in a way to determine if a variable used in a formula is a local variable (i.e., defined usingWITH
) or a global variable (i.e., expected to be passed in when the formula function is called).For example, take this formula
"WITH(a, 1, a + b)"
.a
would be a local variable andb
would be a global variable.Thinking the best way to do this for now is to use the ast, collecting local variables defined with
WITH
.The text was updated successfully, but these errors were encountered: