Skip to main content
Jasmeet Randhawa ha fatto una domanda in #Data Management
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 risposte
  1. 16 set 2016, 21:05

    Just this:

    AND(

    Has_NPA__c = FALSE,

    TEXT(NPA_Type__c) = "Corporate"

    )

    That's it.

0/9000