You need to sign in to do that
Don't have an account?
create a validation rule that Next visit (date type) should be greater than the created date +30 days after
Hii Guys,
i have a object called medication.In that i have a field Next visit (date type) should be greater than the created date +30 days after.What exactly i want is if i choose a date with in 30days of created date it should throw an error.
my validation rule is Next_Visit__c = CreatedDate + 30 ...
can you help me regarding this issue
i have a object called medication.In that i have a field Next visit (date type) should be greater than the created date +30 days after.What exactly i want is if i choose a date with in 30days of created date it should throw an error.
my validation rule is Next_Visit__c = CreatedDate + 30 ...
can you help me regarding this issue
Below is the code thsat you need to add to the validation rule.
DATEVALUE(CreatedDate) + 30 > Next_Visit__c
Please Mark it as answer if it solves your issue.
Thanks
Manoj S