Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
abhilash27
Partner - Contributor
Partner - Contributor

Qlikview - Filter on Expression

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

Labels (2)
1 Solution

Accepted Solutions
rubenmarin

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))

View solution in original post

2 Replies
rubenmarin

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))

abhilash27
Partner - Contributor
Partner - Contributor
Author

That worked! Thank you very much, Rubenmarin.