Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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

1 Solution

Accepted Solutions
sunny_talwar

May be this

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

View solution in original post

3 Replies
sunny_talwar

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)