What is the default date format of your locale - dd/mm or mm/dd ?
There are inconsistencies in the dates - some are listed as mm/dd/yyyy and others as dd/mm/yyyy (this precludes use of Text to Columns conversion unfortunately)
Assuming default date format of dd/mm/yyyy then perhaps:
C2: =IF(ISNUMBER(D2),D2,DATE(RIGHT(D2,4),LEFT(D2,2),MID(D2,4,2)))
copied down
cells formatted as General
However... there are still some invalid entries to account for (00/00/0000, 00/00/001 etc...) - should these be 0 or something else ?
On an aside 1 is the correct DateSerial for Jan 1 1900 on a 1900 Date System.
Bookmarks