Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I run into an error while storing a variable in the script. The error message is Syntax error unexpected token and I'm using the following command:
LET vVariable = num(Round(Sum(DISTINCT [column name], 0.01), '$#,##.00')
Does anyone have any idea how to solve this problem?
Thanks.
LET vVariable = num(Round(Sum(DISTINCT [column name]), 0.01), '$#,##.00')
LET vVariable = num(Round(Sum(DISTINCT [column name]), 0.01), '$#,##.00')
LET vVariable = num(Round(Sum(DISTINCT [column name], 0.01), '$#,##.00')
Just forgot to close the extra bracket which is open.