Skip to main content
Adriana Smith (TWG Plus) 님이 #Data Management에 질문했습니다
We have a validation rule where you cannot edit an opportunity once it is closed, but I need to add: unless you're an administrator.  Help?

 

AND(

 

    NOT(ISNEW()),

 

    CASE(

 

        PRIORVALUE(StageName),

 

        

 

        "Closed Won", 1,

 

        "Closed Lost", 1,

 

        "Closed Discontinued", 1,

 

        0

 

    ) = 1

 

)
답변 7개
  1. 2017년 2월 13일 오후 9:55
    Try this

     

     

    AND(

        NOT(ISNEW()),

        $Profile.Name <> 'System Adminstrator',

        CASE(

            PRIORVALUE(StageName),

            

            "Closed Won", 1,

            "Closed Lost", 1,

            "Closed Discontinued", 1,

            0

        ) = 1

    )

     

     
0/9000