I have this column on an analysis. The underlying formula being used is
CASE WHEN ."Value1" >0
THEN "Value1"
ELSE "Value2"
END
Basically I have two numeric columns for each record. I want to report whichever one is greater than 0.
The detail of the report is correct. I have three lines with these values; 2, 5, 2. The first "2" is from Value1; the "5" and other "2" are from Value2.
For this value column, I selected this aggregation rule: Default and Report-Based Total (when applicable).
The problem comes on the subtotals. On the results tab, I selected to add Totals after each change in a date field. When it prints the total for this date, It shows "7" (It should be 9: 2+5+2).
Any ideas why it's displaying the total incorrectly?
Thanks!
Dennis