Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
flygstolen_fred
Creator
Creator

Set expression and filtering

Hi,

When I apply a filter to show number of order for a certain week some KPI outside the selection are still visible and not blanked out. Is this by design in Qlik Sense or am I doing something wrong?

OrderIdOrderWeekTotal
54637299
54737549
68938499
69038495
69138399

If I apply a filter to only show OrderWeek = 37 then the set expression:

COUNT({ $<OrderWeek={'38'}>} OrderId) doesn't get blanked out.

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

Try using this:

Count({ $<OrderWeek *={'38'}>} OrderId)

You can read about the use of * here: Implicit Set Operators

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

Try using this:

Count({ $<OrderWeek *={'38'}>} OrderId)

You can read about the use of * here: Implicit Set Operators

flygstolen_fred
Creator
Creator
Author

Thanks Sunny T for the quick answer as always!