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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Not Like in Set Analysis

I want to only count records where the email is NOT LIKE  @gmail.com, but I cannot figure out the set analysis ... This is what I have come up with so far. .

=count({<WhoEmail NOT LIKE WildMatch(WhoEmail,'*gmail*')>}distinct(WhoId))

Any help is appreciated!!! Thank you

- dave

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be this

=Count({<WhoEmail -= {'*gmail*'}>} DISTINCT WhoId)

View solution in original post

3 Replies
sunny_talwar
MVP
MVP

May be this

=Count({<WhoEmail -= {'*gmail*'}>} DISTINCT WhoId)

Anonymous
Not applicable
Author

what about null() for WhoEMail?!?

Do you like to "include" it or not...?

neelamsaroha157
Specialist II
Specialist II

Try thi

Count({$<Mail -={"*$(='*gmail*')*"}>}Mail)

Count({$<WhoEmail -={"*$(='*gmail*')*"}>}distinct WhoId)