Skip to main content
I tried a validation rule but they still need to be able to update the opportunity just not the stage. Not sure if this has to be done with a trigger or if I can build a workflow rule or Process Builder to acomplish this. Thanks for your help.
4 respostas
  1. 30 de set. de 2015, 22:15
    Hi Eric,

     

    You can accomplish this using a validation rule, your VR will be something like below

    AND(

    ISCHANGED(StageName),

    TEXT(PRIORVALUE(StageName)) = "Old Stage",

    TEXT(StageName) = "New Stage",

    OR(

    Checkbox_1__c = FALSE,

    Checkbox_2__c = FALSE,

    Checkbox_3__c = FALSE

    )

    )

     

    Please use insert field names to get the api names of your checkbox fields
0/9000