You need to sign in to do that
Don't have an account?
Caluculate New Date Using Date Formula Field
Hi All,
Can you Please tell me how to achive these
Thanks in Advance
Can you Please tell me how to achive these
New_Date__c //Custom Field Activity_Date__c // Another Custom Field New_Date__c = (Activity date + 1 Year) - ( 3 Months + 7 Days)
Thanks in Advance
You can create a formula field that will display a new date. Something like:
You can do math on the individual values
I don't think it is possible to achieve nither with formula nor with workflow .You can achieve this with the help of trigger .
So basically you can simplyfy your logic ,like you are adding 1 year means always 12 month and substracting 3month means ultimatly you need to add 9 month and seven days .
So you try with trigger and use below code in before insert and before update .
New_Date__c=Activity_Date__c.addMonth(9).addDays(7);
Thnaks
Manoj