Is there other data in conjunction with the dates?
Ideally you have an identifier to indicate where the date was originated that way you can call out the right value...
IF - the formats stick to what you have shown above... in which the date is MM/DD/YYYY and DD-MM-YYYY then an IF will do just fine...
Is this in a cell alone or is there more data in it?
=IFERROR(DATE(RIGHT(LEFT(A1,FIND(" ",A1)-1),4),RIGHT(LEFT(A1,FIND("-",A1,FIND("-",A1)+1)-1),2),SUBSTITUTE(RIGHT(LEFT(A1,FIND("-",A1)-1),2),"[",""))
,DATE(RIGHT(LEFT(A1,FIND(" ",A1)-1),4),SUBSTITUTE(RIGHT(LEFT(A1,FIND("/",A1)-1),2),"[",""),RIGHT(LEFT(A1,FIND("/",A1,FIND("/",A1)+1)-1),2)))
You would need to update all the A1 References to what you want
Bookmarks