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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Not Equal to checking in Set Analysis

Hi

Usually we use equal to in set analysis.

in my case

Status column =0 or 1 or anything (based on data)

I want to have all prioduct sales whose status <> 0 and ID=1

What is the syntax for that?

1 Solution

Accepted Solutions
gandalfgray
Specialist II
Specialist II

it would be something like:

sum( {<status-={0}, ID={1}>} sales)

note the -= for status

View solution in original post

3 Replies
gandalfgray
Specialist II
Specialist II

it would be something like:

sum( {<status-={0}, ID={1}>} sales)

note the -= for status

Not applicable
Author

and additional info ;

*if you use "-" before "=" like that sum( {<status-={0}, ID={1}>} sales) result will effect your choise

*if you use "-" after "=" like that sum( {<status=-{0}, ID={1}>} sales) result will not effect your choise ...

Not applicable
Author

Thanks It worked the way I want...

And aso could you tell me how to check not null values... (like this -=null())