Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
1 Reply
sunny_talwar
MVP
MVP

I think you need this

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