You need to sign in to do that
Don't have an account?

Expiary month / year needed from formula
Hi
I am trying to create a formula from the following fields:
Created Date
Term (Pick list > 1yr, 2yr, 3yr)
To give me the month & year that the policy will expire
Can anyone help?
Thank you
Sonya
You will need to replace CreatedDate with the name of your created date field, same with term, and 1yr,2yr with the appropriate picklist text.
All Answers
You will need to replace CreatedDate with the name of your created date field, same with term, and 1yr,2yr with the appropriate picklist text.
YEAR (Start_Date__c ) + (FLOOR((TODAY() - Start_Date__c ) / 365) +
IF(ISPICKVAL(Term__c ,'1year'),1,
IF(ISPICKVAL(Term__c ,'2year'),2,3))),
MONTH( Start_Date__c ),
IF(AND(DAY( Start_Date__c ) = 29,MONTH( Start_Date__c ) = 02) , 28, DAY( Start_Date__c )))