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 件の回答
Hi ,
AND(
Edit_Opportunity_after_close__c ,
OR(
ISPICKVAL( StageName , "Closed Won"),
ISPICKVAL( StageName , "Closed Lost")
)
)