The best that I can do is find the date corresponding to the last unduplicated value in the columns. I hope that this helps. So far, I haven't been able to find the value of the last series of duplicates if they exist.
To find the last unduplicated value in the columns. Enter in destination cell with Ctrl + Shift + Enter and fill across.
Formula:
=INDIRECT("A"&MAX(IF(COUNTIF(B1:B10,B1:B10)=1, ROW(B1:B10))))
This comes close but fails where the last values are duplicates. if the last value(s) in the column are not duplicated and are unique, this works. Again enter with Ctrl + Shift + Enter
Formula:
=IF(MAX(IF(COUNTIF(B1:B10,B1:B10)=1, ROW(B1:B10))) < COUNTA(A:A),OFFSET($A$1,MAX(IF(COUNTIF(B1:B10,B1:B10)=1, ROW(B1:B10))),0),OFFSET($A$1,MAX(IF(COUNTIF(B1:B10,B1:B10)=1, ROW(B1:B10)))-1,0))
Bookmarks