Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Check/ DD date should be kept equal or greater than Receipt date.
Check_DD_Date__c >= Receipt_Date__c
Its not working validation rule.
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.
just add a NOT(Check_DD_Date__c >= Receipt_Date__c) i think it will work for you
Please confirm if above worked for you and mark it solved
Thanks, actually it getting conflict in sandbox which im using as there are n number of validation.
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.
This states that when Check_DD_Date__c is less than Receipt_Date__c, the system should generate an error.
just add a NOT(Check_DD_Date__c >= Receipt_Date__c) i think it will work for you
Please confirm if above worked for you and mark it solved
Thanks, actually it getting conflict in sandbox which im using as there are n number of validation.
Your Solution helped me...:)