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: 
has75042
Creator
Creator

Where Exists

Hi All,

 

From the attached file,  I only want to show record that have an email address.

I am using where Exists function and is not working. I am still getting records with doesn't have email address.

Any help would be really appreciate it 

 

Labels (1)
2 Replies
m_woolf
Master II
Master II

Try:

where len(Email)>0

Jacek
Creator
Creator

Function EXISTS refers to data reloaded before this table. Please use: where len(trim(Email))>0 or where not isnull(Email)