I want to create a validation rule in Invoice when Email alert communication is changed to "Standard process" filling out SEPA project manager email and SEPA project manager
2 answers
Michael Brown (Salesforce) Forum Ambassador
Hi Mehdi, You should be able to do something like this:
AND(ISPICKVAL(Email_Alert_Communication__c,"Standard Process"),
OR(
ISPICKVAL(SEPA_Project_Manager__c,""),
ISBLANK(SEPA_Project_Manager_Email__c)))
This will fire if Email Alert Communication is Standard Process and either of those two fields are blank.
Thanks,
Mikey