Hello,
I'm trying to pull in values across several the "Helper" columns below into the "EOY Forecast" column using a stacked "IF" statement:
=IF(NOT(ISBLANK([Construction Helper]@row)), [Construction Helper]@row, IF(ISBLANK([Construction Helper]@row), [Late Helper]@row, IF(ISBLANK([Late Helper]@row), [Mid Helper]@row, IF(ISBLANK([Mid Helper]@row), [Early Helper]@row))))
I want the formula to pull in the column values from rightmost to leftmost, as they are chronological project stage advancements.
The formula works perfectly until it gets to the Mid and Early columns and then doesn't pull a value in. Does anyone have any suggestions what I might be doing incorrectly? Thanks!