

Specialist
2015-08-06
11:45 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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")
4,474 Views
1 Solution
Accepted Solutions


Partner - Specialist III
2015-08-06
11:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you can use -= to exclude a value
Count({<flag -={1}>} DISTINCT Places)
2 Replies


Partner - Specialist III
2015-08-06
11:53 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
you can use -= to exclude a value
Count({<flag -={1}>} DISTINCT Places)


Specialist
2015-08-06
12:34 PM
Author
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanq Ramon.
3,625 Views
