I have a sheet with one column (start date), next column 3 months from Start, third column 6 months from start.
Formula for 3 months from start date is:
=DATE(YEAR([start date]@row), MONTH([start date]@row) + 3, DAY([start date]@row))
It's working fine for cells that are calculating for years 2025. For cells that will need to calculate 3 months forward from a date later this year, I'm getting an invalid value error in the cell. How do I adjust the formula above so that it counts into the following year?