Hello Community!
I am close on this but I just cannot figure out this last piece and it is driving me nuts. I have two date columns and depending which columns have values I need to record a value in a third column from one of those columns. I have it working with a one column scenario either way but I cannot get the AND function to work. I think I have been staring at this too long and I am lost. Can you help figure out what I need to piece these together?
Here is a screenshot of my sheet and what I am trying to accomplish. The first four rows are the results I am trying to accomplish, the ones in yellow are the pieces I have been able to partially make work. Formula text below
=IF(NOT(ISBLANK([Guidance Date]@row)), [Guidance Date]@row, "") - Works for one column only.
=IF(NOT(ISBLANK([Client ETA]@row)), [Client ETA]@row, "") - works for one column only.
=IF(ISBLANK([Guidance Date]@row), "", IF(ISBLANK([Client ETA]@row), "TBD", [Client ETA]@row)) - works for one column only
=IF(NOT(AND(ISBLANK([Guidance Date]@row), ISBLANK([Client ETA]@row), [Client ETA]@row, ""))) - Incorrect argument and I am stumped after staring at this for too long.
Thank you in advance for any advice you may have!