Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm trying to bring a variable, based on an expression that is dependent on UI selections, into the script after a user-requested reload.
The expression uses functions such as GetSelectedCount() and I need to pass this into the load script to be used in an ADD LOAD function, e.g.:
vVariable = If(GetSelectedCount(fieldA) = 1, fieldB, 0)
At this moment when I use the variable it just gives me the code used in the expression, but I need to be able to bring the evaluated result if possible.
Does anybody know how I can do this?
Thanks.
May be instead of leaving this as an expression, may be trigger to save the value into vVariable and trigger can set off based on changed in selection in fieldA.
May be instead of leaving this as an expression, may be trigger to save the value into vVariable and trigger can set off based on changed in selection in fieldA.
Great suggestion, I'll give it a go.
This has worked. Thank you very much.
Awesome, I am glad it did