function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Girbson Bijou 7Girbson Bijou 7 

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"))
 
Ajitkumar Pradhan 9Ajitkumar Pradhan 9
Hi,
Hope this work for you

(
ISPICKVAL(PRIORVALUE(Request_Status__c),"Error"), NOT(ISPICKVAL(Request_Status__c,"Endorse")))
)
Ajitkumar Pradhan 9Ajitkumar Pradhan 9
Hi if it was correct. Please select it as best answer.