Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello:
I've a pivot table with one dimension Warehouse and three expresions Input, Output and Stock.
I don't want to show rows (warehouse item) where Input = 0 and Output = 0 and Stock = 0. How can I do it?
Thank you.
Joaquín
Hi joaquinlr,
Did you try calculated dimension yet? Like this
Aggr(Only({$<Input -={0}, Output -={0}, Stock -={0}>} Warehouse), Warehouse)
Regards,
Sokkorn
Check in dimension tab suppress when value is null
or in presentation tab check
suppress zero value
Hi,
Does your (Input, Output and Stock) is Expression or Dimension?
If dimension then you can use "Calculated Dimension" for you [Warehouse Item] with below expression
Aggr(Only({$<Input -={0}, Output -={0}, Stock -={0}>} [Warehouse Item]), [Warehouse Item])
Regards,
Sokkorn
They're expressions
Hi,
Can you share those expression (Input, Output and Stock)?
Regards,
Sokkorn
Supressing zeros value works, but now I've a fourth expression with a correct value.
Yes sum(Inputs), sum(Outputs), sum(Stock)
Hi joaquinlr,
Did you try calculated dimension yet? Like this
Aggr(Only({$<Input -={0}, Output -={0}, Stock -={0}>} Warehouse), Warehouse)
Regards,
Sokkorn
The calculated dimension works.
Hi joaquinlr,
Great to hear that.
Cheer!!!
Sokkorn