Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
How to remove row in straight and pivot table, if the Amount column has Zero values.
Thanks,
MLNR
If Amount is the only expression then in Presentation check the box "Suppress Zero Values" otherways tell me more about dimensions and expressions
Hi,
In the Expression use conditional option and write
Ex:-
Suppose your expression is Sum(Amt)
if(Sum(Amt) =0,0,1)
Regards
Anand
And if it is dimension then write
Ex:-
Click on Enable conditional
if(IsNull(Amt ) = 0,0,1)
Regards
Anand
Hi,
for pivot table you can restrict in expression-Conditional: (=sum(Sales)>0).
In straight table Presentation- condition: if(Sum(Actual)>0,1,0)
Regard
Arun