Skip to main content
Hello Community

 

We have 3 custom fields (that are filled in by our Sales reps w a certain financial numbers).

 

Field A

 

Field B

 

Field C

 

Now I'd like to create a validation rule that at least one of those fields needs to be filled upon the very first stage change, in order to save the record and push the opportunity to the next stage.

 

Thanks for your help,

 

Philipp
13 answers
  1. Sep 27, 2017, 9:19 AM

    AND(

    ISCHANGED(StageName),

    ISBLANK(Field A),

    ISBLANK(Field B),

    ISBLANK(Field C)

    )

     

     
0/9000