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
prasad bhavanariprasad bhavanari 

date valiadtion

i have three dates 
date1
date2
date3
 
date1 < date 2 < date 3
date 1 < date3 
Vinay JVinay J
Hi Pradad,

Validation Rule with below formula should do your job:-

if(date3 < date2, true, if(date2 < date1, true, false))