Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

ignore selection in set analysis

Hi,

I am using the following statement in set analysis

=Sum({<Status = {'Order'}>}[Order value])

However, I want this expression to ignore any other selection from filter from the status field. For example if any status other than Order is selected, this expression should still show the data for Order status

Can someone please tell me how to fix this

Arif

3 Replies
rustyfishbones
Master II
Master II

What you have should be correct

MK_QSL
MVP
MVP

=Sum({1<Status = {'Order'}>}[Order value])

jaimeaguilar
Partner - Specialist II
Partner - Specialist II

Hi,

your formula will consider only Order Value with status 'Order'. So it doesn't matter if you select other Status, it will be ignored. If you want to ignore other selections apart from Status, you have to put something like this:

=Sum({$<Status = {'Order'}, fieldtoignore1=, fieldtoignoreN=>}[Order value])



regards