CR8.5.
I have a running total on an amount field that sums the amounts by group.
I have already taken account of Null value in the report view as NVL(Field.Value,0)as Filed. I expect that when there is no value in the Field, the running total still should show me a 0, but it is not showing anything, and I have to create another formula like:
IF IsNull(#Total)Then 0 Else #Total
to show a zero on my report. I have about 20 running totals and I don't like to create 20 formulae to account for Null value if there is a way to do it in running total itself. Thanks.
I have a running total on an amount field that sums the amounts by group.
I have already taken account of Null value in the report view as NVL(Field.Value,0)as Filed. I expect that when there is no value in the Field, the running total still should show me a 0, but it is not showing anything, and I have to create another formula like:
IF IsNull(#Total)Then 0 Else #Total
to show a zero on my report. I have about 20 running totals and I don't like to create 20 formulae to account for Null value if there is a way to do it in running total itself. Thanks.