MYNEWVALUE = @Evaluate([return {@Value(MYATTRIBUTE1)_@Value(MYATTRIBUTE2)}])
However when I try to do arithmetic operations I only get the letters and not the calculations. Any ideas?
Doing this:
MYNEWVALUE = @Evaluate([return {@Value(MYNUMBERATT1)-@Value(MYNUMBERATT2)}])
With attributes
MYNUMBERATT1 = 10
MYNUMBERATT2 = 1
gives: MYNEWVALUE = 10-1
And NOT the desirec MYNEWVALUE = 9



