Skip to main content
How can I create a validation rule that will prevent a User from selecting the Opportunity Stages of "Warm" or "Hot" unless the checkbox field on the Opportunity record "Communicated" is checked?

 

Thanks!
3 answers
  1. Sep 11, 2013, 7:25 PM
    Hey Steve,

     

    AND(

     

             Communicated__c = FALSE,

     

             OR(

     

                    TEXT(StageName) = "Warm",

     

                    TEXT(StageName) = "Hot"

     

             )

     

    )

     

    Best,

     

    Deepak
0/9000