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

Invert selection in Set Analysis

Hi,

to restrict certain clients I use Set Analysis:

Sum ({$<Client={'ABCDE LTD', 'QWERTY LTD', 'Others LTD'}>} Shipment.Sum)

what the correct syntax to invert selection? ie exclude clients 'ABCDE LTD', 'QWERTY LTD', 'Others LTD'?

Regards,

Oleg

1 Solution

Accepted Solutions
Not applicable
Author

Sum ({$<Client-={'ABCDE LTD', 'QWERTY LTD', 'Others LTD'}>} Shipment.Sum)

Also take a look at this thread as it outline the different operators you can use

Set Analysis: syntaxes, examples

hope that helps

Joe

View solution in original post

4 Replies
Not applicable
Author

Sum ({$<Client-={'ABCDE LTD', 'QWERTY LTD', 'Others LTD'}>} Shipment.Sum)

Also take a look at this thread as it outline the different operators you can use

Set Analysis: syntaxes, examples

hope that helps

Joe

Not applicable
Author

Hi,

Did you tried

Sum ({$<Client-={'ABCDE LTD', 'QWERTY LTD', 'Others LTD'}>} Shipment.Sum)


Thanks

MK_QSL
MVP
MVP

Sum ({$<Client -= {'ABCDE LTD', 'QWERTY LTD', 'Others LTD'}>} Shipment.Sum)

aveeeeeee7en
Specialist III
Specialist III

Hi

Try this:

Sum ({$<Client={'*'}-{'ABCDE LTD', 'QWERTY LTD', 'Others LTD'}>} Shipment.Sum)

Regards

Aviral Nag