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

How do I create a validation rule on a Dat Field?
I would like to create a validation rule that Planned Installation Date cannot be less than 7 days from record creation date.
Can you please help?
Planned Installation Date (Date Field)
Planned_Installation_Date__c (API)
Can you please help?
Planned Installation Date (Date Field)
Planned_Installation_Date__c (API)
From my understanding, an error should occur if Planned Installation Date is less than 7 days after created date. If this is the case try crating a validation rule with the following in the formula box
Planned_Installation_Date__c < CreatedDate + 7
The validation rule will fire if this formula is true
Hope this helps!
AM
Planned_Installation_Date__c - DATEVALUE(CreatedDate ) < 7
Planned_Installation_Date__c < DATEVALUE(CreatedDate) + 7
Hope this helps!
AM