Hello,
I am trying to find a formula that will calculate out 90 days from a given date AND give the result as the last day of the month.
The given date is Completion Date Estimate i.e. 10/31/2017 of a project and I would like a cost cut off date that is 90 days later on the last day of the month i.e. 01/31/2018.
One formula I have is =[Completion Date Estimate]ROW# + 90. This only gives me a count of 90 days later. i.e 10/31/2017 to 01/29/2018
The next formula I have is =IF((MONTH([Completion Date Estimate]ROW#) + 3) < 1, DATE(YEAR([Completion Date Estimate]ROW#) - 1, MONTH([Completion Date Estimate]ROW#) + 3 + 12, DAY([Completion Date Estimate]ROW#)), DATE(YEAR([Completion Date Estimate]ROW#), MONTH([Completion Date Estimate]ROW#) + 3, DAY([Completion Date Estimate]ROW#))). This formula works great, except if the completion date falls in Oct, Nov, or Dec. Then the month count does not know to go from 12 to 1 and an error of #INVALID VALUE is given.
Does anyone have any suggestions?