Skip to main content
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