Skip to main content
Serena Shergill (PatSnap) 님이 #Data Management에 질문했습니다
Validation rule need to :

 

Stop value 'Exisiting Business' in picklist value Type from being able to be saved if the Stage field has a value
답변 10개
  1. 2018년 6월 13일 오전 9:21

    Like this = 

    AND(

    NOT(ISBLANK(TEXT(Stage))),

    TEXT(TYPE) = "Exisiting Business"

    )

    Note: - Use correct API name for the fields and use insert field options to select the field.

0/9000