I found it more convenient to insert two new columns A and B, so the other data shifts over. Then you can put this formula in A2 to get the date in Excel format:
Formula:
=DATE(RIGHT(LEFT(C2,SEARCH(" ",C2)-1),4),LEFT(C2,SEARCH("-",C2)-1),SUBSTITUTE(MID(C2,SEARCH("-",C2)+1,2),"-",""))
and this formula in B2 extracts the time in Excel format:
Formula:
=--SUBSTITUTE(SUBSTITUTE(RIGHT(C2,LEN(C2)-SEARCH(" ",C2))," MST",":00")," MDT",":00")
After formatting how you would like them to appear, you can then copy them down to the end of your data. If you want the date/time combined, then all you need to do is:
=A2+B2
and format appropriately, then copy down.
Hope this helps.
Pete
Bookmarks