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

Date Field 3 Months Out on 15th Day
I have a standard date field that I would like to use in a formula field to timestamp 3 months out on the 15th of the month. For example. if the date field was in 6/24/15 I want the formula date field to read 9/15/15 (regardless of the number of days in a month).
Any help would be greatly appreciated!
Any help would be greatly appreciated!
This formula returns a Date type (You can convert it to text if you need to). The FLOOR(...) function handles the situations where you get into October, November, or December and need to wrap into the next year by using some simple math calculations.
DATETIMEVALUE(DATE((YEAR(MtgPlanner_CRM__Closing_Date__c)+FLOOR(((MONTH(MtgPlanner_CRM__Closing_Date__c)+1)/13))),MONTH(MtgPlanner_CRM__Closing_Date__c)+1,16))
Thanks for a great intel guys. Related question:
What would the formula be to set a Due Date equal to the 15th of the next month?
E.g. Invoice Date = 1-Nov-21, Due Date should be 15-Nov-21
Would this be the correct syntax?
DATE(YEAR(blng__Invoice_Date__c)+FLOOR(((MONTH(blng__Invoice_Date__c))/13)),MONTH(blng__Invoice_Date__c),15)