You need to sign in to do that
Don't have an account?
Venkat Reddy sfd
Validation Rule for Start date not Working
I have Custom Field called Start_Date__c in my Custom Object. I have written Validation Rule for that. my requirement is whenever user creating a record the Start_Date__c shouldnt be past date, for this i have given validation rule: START_DATE__c < Today()
Validation Working fine,
My requirement is, when user Edits the record in future without editing the start date, at that time validation triggering, it shouldnot fire at that time...
Example: user created record on 1st nov 2014 and user Edited record on 5th november 2014 without editing the start date, validation rule not allowing user to save record with 01st november 2014. its shouldnot happen like this, could you please help me out.
Thanks in Advance...
Validation Working fine,
My requirement is, when user Edits the record in future without editing the start date, at that time validation triggering, it shouldnot fire at that time...
Example: user created record on 1st nov 2014 and user Edited record on 5th november 2014 without editing the start date, validation rule not allowing user to save record with 01st november 2014. its shouldnot happen like this, could you please help me out.
Thanks in Advance...
I think I understand your request. You only want the validation rule to enforce if it is created, not updated.
The criteria would then be
Is that what you are requesting?
All Answers
sorry but I don't understand your request. Can you explain more with a clear example?
Thanks
I think I understand your request. You only want the validation rule to enforce if it is created, not updated.
The criteria would then be
Is that what you are requesting?
Or Maybe you want the validation rule to be executed only when the Start Date is changed :
ISCHANGED(Start_Date__c) && Start_Date__c < TODAY()
Jerome
Thank you So much. its Working