I'm trying to write a formula that evaluates three columns of dates and pulls in the value of a fourth column (MWh@row) if each of the first three column's dates have already occurred in the past or will happen before the end of this year, and I'm not having any success. I keep getting an "#INCORRECT ARGUMENT" error. Can anyone make any suggestions as to where I am going wrong?
=IF(AND(OR([Local Permits Acquired (F)]@row < TODAY(), [Local Permits Acquired (F)]@row < DATE(YEAR(TODAY()), 12, 31)), IF(OR([IX Phase 3 Studies (F)]@row < TODAY(), [IX Phase 3 Studies (F)]@row < DATE(YEAR(TODAY()), 12, 31)), IF(OR([HV Breaker PO Executed (F)]@row < TODAY(), [HV Breaker PO Executed (F)]@row < DATE(YEAR(TODAY()), 12, 31)), MWh@row))))
Thank you!