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
SFDC_Dev_2009SFDC_Dev_2009 

Check for empty

I am trying to add a validation rule to check that when a value is entered in Field A,Field B should not be empty.

 

Any Suggestion?

SFDC_Dev_2009SFDC_Dev_2009

Here is the solution ,

 

AND( 
           NOT( ISBLANK( Field A )) ,
             ISBLANK( Field B )
         )