Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
On the script I have noticed no difference between '$(Var)' and $(Var). I suppose that the ' forces the $(Var) as a string.
Thanks in advance
Fabio
The $(Var)-construction will be replaced by the value of the variable "Var" when the script runs.
So, if "Var" equals the string ABC, then the $(Var) will be replaced by ABC and this will be interpreted as e.g. a field name, by the script parser. Whereas '$(Var)' will be read as 'ABC', which is a literal, e.g. a field value.
The $(Var)-construction will be replaced by the value of the variable "Var" when the script runs.
So, if "Var" equals the string ABC, then the $(Var) will be replaced by ABC and this will be interpreted as e.g. a field name, by the script parser. Whereas '$(Var)' will be read as 'ABC', which is a literal, e.g. a field value.