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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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