If values in Column J are already treated as dates by Excel, then use
=text(J1,"MM/DD/YYYY")
If values in column J are treated as text by excel, then use
=mid(J1,4,2)&"/"&left(J1,2)&"/"&right(J1,4)
Both formulas produce output in text format, which means you cannot use these values for...