I have a spreadsheet full of data with dates and times in cells, but they're formatted as text and I can't just reformat them to dates (at least not without double-clicking on each cell for some reason).
The text strings look like this:
10/1/2015 4:32:16 PM
Any idea how to get it into a regular date format without the time? The ideal format is just mm/dd/yyyy. I've already tried extracting the text with =DATE(Left(F3,9)) or something similar.