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 个回答
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)
)