Is there a way to have a formula using the YEAR function to look at multiple columns until it comes to one that isn't blank?
I'm attempting to pull the Year from various project start date columns. Some lines will not have dates in a column. i basically want the formula to look in each of the columns listed below (start columns) and if one is blank, move to the next column etc etc until it comes to one that has a date in it. if there isn't a date in any of them would like it to say 'none"
My sheet has the following columns (all date columns):
Conf Start Date
Online Start Date
Private Start Date
Other Type Start Date
Year (text/number)
This is what I have for the formula and it's not working (#UNPARSEABLE error)
=IF(ISBLANK([Conf Start Date]@row), YEAR([Online Start Date]@row), YEAR([Conf Start Date]@row)), IF(ISBLANK([Online Start Date]@row), YEAR([Private Start Date]@row), YEAR([Online Start Date]@row)), IF(ISBLANK([Private Start Date]@row), YEAR([Other Type Start Date]@row), YEAR([Private Start Date]@row)), IF(ISBLANK([Other Type Start Date]@row), "none", YEAR([Other Type Start Date]@row))
Any assistance would be appreciated.