Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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.