Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

expression

I have 2 variables in an expression ...these variables are maintained in sublime ...for example

v$(RegionAmount) + v$(DivsionAmount) /12 * Max(Month)


lets assume 100 + 200 /12 * 5 = So the answer should be 125,,


But iam getting 83.4 because it is caluclation in a wrong way..




I cannot use Sum as ..already Sum is used in the Variable and I get nested error.


any suggestions

1 Reply
sunny_talwar

I think you need this

(v$(RegionAmount) + v$(DivsionAmount)) /12 * Max(Month)