I need to create a VR for when the 'Who is issuing the signature?' picklist field has the value of "LLG" then the 'Who should sign first?'(picklist), 'External Party Signatory Email' (text), & 'Additional Individuals to be copied' (text) fields are required.
Thanks!
Marie
3 answers
Eric Praud (Activ8 Solar Energies) Forum Ambassador
Hi Marie,
Try this:
AND(
TEXT(Who_is_issuing_the_signature__c)="LLG",
OR(
ISBLANK(TEXT(Who_should_sign_first__c)),
ISBLANK(External_Party_Signatory_Email__c),
ISBLANK(Additional_Individuals_to_be_copied__c)
)
)