Skip to main content
LaKisha Adams 님이 #Customer Service에 질문했습니다
For example, I only want someone with the role - Performance Consultant to be able to close an implementation case.
답변 2개
  1. 2015년 6월 25일 오후 7:54
    I used the below

     

    AND(

     

        $UserRole.Name <> "Performance Consultant",

     

        $UserRole.Name <> "System Administrator",

     

        $UserRole.Name <> "Implementation Support",

     

        $UserRole.Name <> "Director of Customer Performance",

     

        TEXT(Implementation) = "Closed"

     

    )

     

    I get the error message "Error: Field Implementation does not exist. Check spelling."  I am trying to specify that the above roles can only close a case that has a type=implementation.

     

    Please advise what I am doing incorrectly.
0/9000