Skip to main content

This is literally drive me crazy, and I am sure it's a very small detail I am not being able to figure out.   Validation Rule  AND( OR( ISPICKVAL(Status__c,"Pending due to error"), ISPICKVAL(Status__c,"Pending other departments")), Record_Type_Name__c = "Cancellations", PRIORVALUE(OwnerId) = "Cancellations", ISCHANGED(OwnerId))  

  • Owner Id is correct 

No errors found, but VR not triggering...

3 个回答
  1. 2021年12月28日 17:27

    It would be something like this

     

    AND(

    OR(

    ISPICKVAL(Status__c,"Pending due to error"),

    ISPICKVAL(Status__c,"Pending other departments")

    ),

    Record_Type_Name__c = "Cancellations",

    PRIORVALUE(OwnerId) = "005004003002aBc",

    ISCHANGED(OwnerId)

    )

0/9000