function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Eric PohlabelEric Pohlabel 

How do I check for an empty email field...I assume isBlank...but Process Builder only gives choice for isNull

I am building a process flow using Process Builder.  As part of the criteria, the process should not proceed if a particular email field is not populated.  The only choice from the Process Builder is to check for isNull but I feel like this doesnt work if the email address (Field Type Email) is actually a String type in which case isBlank would be appropriate.
Raj VakatiRaj Vakati
please check this image. You can check here in this image. Sting can be a blank and Null as well 
String s='' ; ( BLANK )
String s; (NULL )
 

User-added image