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: 
markgraham123
Specialist
Specialist

Not equal to in Set analysis

Hi all,

I'm writing a set analysis expression,

Count(DISTINCT( Places))

Here i wanna omit the places which has flag "1" .

"Cross" and "Hill" has the flag "1" during the script execution with a condition.

Finally, i'm trying to get Count(DISTINCT( Places)) where flag for Cross and Flag is not equal to "1" (or equal to "0")

1 Solution

Accepted Solutions
ramoncova06
Partner - Specialist III
Partner - Specialist III

you can use -= to exclude a value

Count({<flag -={1}>} DISTINCT Places)

View solution in original post

2 Replies
ramoncova06
Partner - Specialist III
Partner - Specialist III

you can use -= to exclude a value

Count({<flag -={1}>} DISTINCT Places)

markgraham123
Specialist
Specialist
Author

Thanq Ramon.