You need to sign in to do that
Don't have an account?

Priorvalue of field in parent record Validation Rule
What is the syntax to use Priorvalue of field in parent record Validation Rule
ISPICKVAL( Delivery__r.Delivery_status__c , "Delivered")
the one below does not wok
ISPICKVAL( PRIORVALUE(Delivery__r.Delivery_status__c , "Delivered"))
ISPICKVAL( Delivery__r.Delivery_status__c , "Delivered")
the one below does not wok
ISPICKVAL( PRIORVALUE(Delivery__r.Delivery_status__c , "Delivered"))
Hope this work for you
(
ISPICKVAL(PRIORVALUE(Request_Status__c),"Error"), NOT(ISPICKVAL(Request_Status__c,"Endorse")))
)