Skip to main content

I need to make a validation rule that will prevent edits to a closed opportunity but I want to put a kill switch on the record so that means I have to write the validation rule to exclude that checkbox so that it can be edited anytime.

Can someone tell me how to write this type of validation rule?

5 件の回答
  1. 2022年11月9日 1:43

    Hi ,

     

    AND(   

    Edit_Opportunity_after_close__c , 

    OR( 

    ISPICKVAL( StageName , "Closed Won"), 

    ISPICKVAL( StageName , "Closed  Lost")

    )

    )

0/9000