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
streetstreet 

validation rule not working

Check/ DD date should be kept equal or greater than Receipt date.

 

Check_DD_Date__c >= Receipt_Date__c

 

Its not working validation rule.

sfdcfoxsfdcfox

Validation rules result in an error when the result is true. So, to write this correctly, you have to define the condition where it is an error.

 

Check_DD_Date__c < Receipt_Date__c

This states that when Check_DD_Date__c is less than Receipt_Date__c, the system should generate an error.

Abhay AroraAbhay Arora

just add a NOT(Check_DD_Date__c >= Receipt_Date__c) i think it will work for you

Abhay AroraAbhay Arora

Please confirm if above worked for you and mark it solved

streetstreet

Thanks, actually it getting conflict in sandbox which im using as there are n number of validation.

Sushma  RamakrishnanSushma Ramakrishnan
Thanks so much Abhay Arora...I had a similar issue...
Your Solution helped me...:)