Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
upaliwije
Creator II
Creator II

SET EXPRESSION WITH NOT EQUAL

I have written the following expression and  is working fine

SUM({$<CODE={'XY','RY'}>}AMOUNT-COMM)

But I want to write the same expression with CODE<>{'XY','RY'}  but not working. Pls help

1 Solution

Accepted Solutions
don_qlikview
Creator
Creator

If you want to exclude Codes XY & RY then you can try doing this

SUM({$<CODE -= {'XY','RY'}>}AMOUNT-COMM)

View solution in original post

3 Replies
don_qlikview
Creator
Creator

If you want to exclude Codes XY & RY then you can try doing this

SUM({$<CODE -= {'XY','RY'}>}AMOUNT-COMM)

paul_scotchford
Specialist
Specialist

try

SUM({$<CODE={'<>XY and <> RY' }>}AMOUNT-COMM)

upaliwije
Creator II
Creator II
Author

Thanks