Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a pivot table visual, with 4 dimensions and 3 measures - please refer to the attached image. I want to filter out records with Total Volume less than 20. Can I get some recommendation on how I can acheive that. Of the 4 dimensions, Origin City and Mode are calculated dimensions.
Thank you,
Abhilash
Hi, if you want to show less than 20 filtering all dimension you can simple set an If() before it calculates the expression:
If(Sum(Volume)<20, Sum(Volume))
If(Sum(Volume)<20, Avg(DaysToLoad))
Hi, if you want to show less than 20 filtering all dimension you can simple set an If() before it calculates the expression:
If(Sum(Volume)<20, Sum(Volume))
If(Sum(Volume)<20, Avg(DaysToLoad))
That worked! Thank you very much, Rubenmarin.