Skip to main content
Please help with a rule which doesn't save the record if a checkbox (Has_NPA) is false and picklist (NPA Type) has a value = "Corporate".

 

Thanks!!!
3 Antworten
  1. 16. Sept. 2016, 21:05

    Just this:

    AND(

    Has_NPA__c = FALSE,

    TEXT(NPA_Type__c) = "Corporate"

    )

    That's it.

0/9000