I have 3 measures: A, B, C
Measure c is this calculation:
IF(A>B)
THEN A-B
ELSE 0
This formula run for every records, which works fine. The problem is that. I want to get sum of the measure c, the above formula work.
A B C 5 2 3 6 8 0 total : 11 10 1
In above example the result that shown is "1" But I want to show "3"
What I want is this :
A B C 5 2 3 6 8 0 total : 11 10 3