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
nelle3223nelle3223 

Once a field is populated then two other fields need added

Hello,

 

I am trying to find a formula to use as a validation rule when the field "Execution Date" has been filled in then the Start Date and Expiry Date fields need to be added as well.

 

Can you help?

Best Answer chosen by Admin (Salesforce Developers) 
nelle3223nelle3223

This is what I have so far, but it is telling me an extra OR.

 

NOT(isblank( Execution_Date__c )) && (isblank( Contract_CO_Start_Date__c ))OR(isblank( Contract_CO_Expiry_Date__c ))

All Answers

nelle3223nelle3223

This is what I have so far, but it is telling me an extra OR.

 

NOT(isblank( Execution_Date__c )) && (isblank( Contract_CO_Start_Date__c ))OR(isblank( Contract_CO_Expiry_Date__c ))

This was selected as the best answer
Shannon HaleShannon Hale

I think you just need to change your OR to || there.