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: 
mario-sarkis
Creator II
Creator II

set analysis

hey all ,

i have a field for example

ID

001

002

003

004

005

006

how chan i write in the set analysis     sum(ID<> 001 and ID <>002,amount)

Thank you,

5 Replies
PrashantSangle

Hi,

Sum({<ID-={'001','002'}>}Amount)

or

Sum(if( not wildmatch(ID,001,002),Amount))

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
MK_QSL
MVP
MVP

SUM({<ID = {'*'}-{'001','002'}>}amount)

Not applicable

Hi,

Try:

1--->Sum({<ID-={'001','002'}>}Amount)

2--->Sum({<ID={'<>001'},ID={'<>002'}>}Amount)

Regards,

Jemimah

Anonymous
Not applicable

sum({$<ID =E({<ID ={001,002}>})>}Amount)

Not applicable

Hi Mario,

Try like this:

Sum({<ID = {''001','002'} > } Amount )

It's simple :

Sum ---------------------------------------------> Expression

{< Dim = { unique record} >} -    ----> Set

your req: Amount

Ramya.