Some cells not populating with column formula

Options

Hello all,

I've got a column formula that automatically determines start date based on a different date. It appears though that some cells are not populating (see snapshot) and I wondered if anyone can advise why it might be? The Start-Up duration column has a column formula "=3" for 3 months and Start-Up start date should be calculated as 3 months before FPI/Start-Up End. It appears that it may have issues going back a year and I'm not sure how to sort it out.

The formula is as follows:

=IFERROR(DATE(YEAR([FPI/Start-Up End]@row) + ROUNDDOWN((MONTH([FPI/Start-Up End]@row) - [Start-Up duration (months)]@row) / 12, 0) + IF(IF(MOD(MONTH([FPI/Start-Up End]@row) - [Start-Up duration (months)]@row, 12) = 0, 12, MOD(MONTH([FPI/Start-Up End]@row) - [Start-Up duration (months)]@row, 12)) = 12, +1), IF(MOD(MONTH([FPI/Start-Up End]@row) - [Start-Up duration (months)]@row, 12) = 0, 12, MOD(MONTH([FPI/Start-Up End]@row) - [Start-Up duration (months)]@row, 12)), DAY([FPI/Start-Up End]@row)) + 1, 0)



Tags:

Best Answer

Answers