I am trying to add a column formula whereby a date is added in one column and in another column 3 months is added to the first sou,n's date. This works fine where the month is between January and September. However if 1 October 2022 is added the date should be 1 January 2023. It lists it as 1 October 2022. (the same). IF I add 1 September the date added is 1 December 2022 which is correct. The formula I have is as follows:
Reimbursement Recommended Date is the date it should add 3 months onto.
=IFERROR(IFERROR(DATE(YEAR([Reimbursement Recommended Date]@row), MONTH([Reimbursement Recommended Date]@row) + 3, DAY([Reimbursement Recommended Date]@row)), DATE(YEAR([Reimbursement Recommended Date]@row), MONTH([Reimbursement Recommended Date]@row), DAY([Reimbursement Recommended Date]@row))),"")
Can anyone confirm what I have missed or is wrong so it will go into the following year.