Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Is there a way to show only the rows where the value of the first Expression is > 0?
I would only see the yellow rows in my Pivot table?
regards,
Kris
If you have more than one column then you may be write this
if (Column(1)> 0 , Sum(sales) , Null())
Or
Please share some sample app
If you have more than one column then you may be write this
if (Column(1)> 0 , Sum(sales) , Null())
Or
Please share some sample app
For each expression you have to use
If(Aantal >0, YourExpression)
Thanks,
this works. And then in the Presentation tab Suppress Zero-Values.
Regards,
Kris
Good...