Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
jpjust
Specialist
Specialist

Set Analysis not equal to

Hi,

My setAnalysis not equal to operator is not working, can some one please take a look and let me know if there is any thing wrong here.

This works:

sum({<Region = {"NA"}> + <Region = {"US"}>} Sales) 

This don't work:

sum({<Region - = {"NA"}> + <Region -= {"US"}>} Sales)

Thanks

1 Solution

Accepted Solutions
Jyothi_Challa
Contributor II
Contributor II

Hi @jpjust ,

Could you please try with the below expression :

sum({<Region-={"NA","US"}>}Sales)

 

Thanks!

 

View solution in original post

2 Replies
Jyothi_Challa
Contributor II
Contributor II

Hi @jpjust ,

Could you please try with the below expression :

sum({<Region-={"NA","US"}>}Sales)

 

Thanks!

 

jpjust
Specialist
Specialist
Author

Thank you so much.