Skip to main content
Jasmeet Randhawa 님이 #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개
  1. 2016년 9월 16일 오후 9:05

    Just this:

    AND(

    Has_NPA__c = FALSE,

    TEXT(NPA_Type__c) = "Corporate"

    )

    That's it.

0/9000