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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
thewillemzelluf
Creator
Creator

Set analysis

Hey,
I have a question about set analysis.
I would like to select the turnover of all customers except 4. I have no idea how I can filter this via set analysis. I thought of Sum ({1 - $ <CustomerID = {1120,1121,1122,1123}>} Total sales) but it does not work: P

does anyone have any idea what I'm doing wrong?

5 Replies
awhitfield
Partner - Champion
Partner - Champion

Hi Willem,

please see the following for Set Analysis Exclusion:

Excluding values in Set Analysis

Best regaards

Andy

sasiparupudi1
Master III
Master III

Try

Sum ({1<CustomerID -= {1120,1121,1122,1123}>} Total sales)

Qrishna
Master
Master

you can try -

if you want to include any current selections:

Sum ({$<CustomerID = {'*'} - {1120,1121,1122,1123}>} Total sales)

or

Sum ({$<CustomerID -= {1120,1121,1122,1123}>} Total sales)

if you want to exclude all current selections:

Sum ({1<CustomerID = {'*'} - {1120,1121,1122,1123}>} Total sales)

or

Sum ({1<CustomerID -= {1120,1121,1122,1123}>} Total sales)

sagarkharpude
Creator III
Creator III

Sum ({$<CustomerID = {'*'} - {'4'}>} sales)

thewillemzelluf
Creator
Creator
Author

Thankyou all!

All the solutions did work out