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
Guilherme FossalussaGuilherme Fossalussa 

Write a validation rule for date field!

I need to write a validation rule in a date field that does not let the user fill in with a date less than 2 days from today's date or greater than 20 days from today's date. Anyone can help me with that?
Prashanth Reddy 138Prashanth Reddy 138
DateField__c = Now() -2
OR
DateField__c= Now() + 20
Raj VakatiRaj Vakati
 
OR(
 Publishing_Date__c < TODAY() -2,
 Publishing_Date__c < TODAY() +20
)

 
Raj VakatiRaj Vakati
OR(
 Publishing_Date__c = TODAY() -2,
 Publishing_Date__c =TODAY() +20
)