Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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
Specialist III
Specialist III

you can use -= to exclude a value

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

View solution in original post

2 Replies
ramoncova06
Specialist III
Specialist III

you can use -= to exclude a value

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

markgraham123
Specialist
Specialist
Author

Thanq Ramon.