Skip to main content
LEAH Gus (Gus) 님이 #Data Management에 질문했습니다

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