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 respostas
  1. 9 de nov. de 2022, 01:43

    Hi ,

     

    AND(   

    Edit_Opportunity_after_close__c , 

    OR( 

    ISPICKVAL( StageName , "Closed Won"), 

    ISPICKVAL( StageName , "Closed  Lost")

    )

    )

0/9000