Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi - Question about the Variable Input Extension.
My sheet has a variable input box extension and a table visualization. Is there a way to set some type of flag or indicator on the variable to only change the variable if the record is selected within the table ? thoughts - Jerry
You would need to use alternate states achieve this
Im assuming you have the same fields in the filter pane and maybe some of the same fields in a table
but don't want to change variable value when applying selections from filter pane and only respond to selections from the table
Create an alternate se state assign it to the table and assign the same state to the variable as well
$({MyState} vMyVar)
Hello 👋 I'm not sure I have fully understood what development you are looking for but if you want to set a flag based on a selection the fastest way you could obtain this is by setting a variable to be: = If( Only(YourFieldName ) = 'Value', 1,0).
If I have misunderstood your request please, clarify a little bit the context (maybe with a screenshot and/or a sample App).
You would need to use alternate states achieve this
Im assuming you have the same fields in the filter pane and maybe some of the same fields in a table
but don't want to change variable value when applying selections from filter pane and only respond to selections from the table
Create an alternate se state assign it to the table and assign the same state to the variable as well
$({MyState} vMyVar)