Skip to main content
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 

 

2 Replies
m_woolf
Master II
Master II

Try:

where len(Email)>0

Jacek
Educator-Ambassador
Educator-Ambassador

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