Hi all,
I'm trying to write a formula that takes the dates from 3 separate columns compares them and then returns to me the most recent date. However, some of these columns occasionally contain NULL values. As of now my formula looks like the following:
=IF(C:C>D:D,C:C, IF(D:D>E:E,D:D,E:E ))...