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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Help with set analisys

Dear all,

I'm making some mistakes, but I don't know where.

The following expression is correct:

sum( {<SALESMAN = {'PAUL'}>} SALES)

and sums all the records with SALESMAN = PAUL.

NOw I would have another expression which sums all the records with SALESMAN <> PAUL. How can I do it ?

I tried this , but it doesn't work

sum( {<SALESMAN = {"<> 'PAUL' "} > } SALES)

Help please

Thanks in advance

1 Solution

Accepted Solutions
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try this.

sum( {<SALESMAN -= {"PAUL"} > } SALES)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!

View solution in original post

2 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Try this.

sum( {<SALESMAN -= {"PAUL"} > } SALES)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

Great!! Thanks