Hi,
in csv file I have column, where are date's with diffrent format as below:
02/03/2014 00:10
1/02/2014 7:25:00
7/03/2013 8:30:00 PM
I want to set up the same format for all date's.
I`m doing something like:
but is going wrong.
Any idea how to do it?
in csv file I have column, where are date's with diffrent format as below:
02/03/2014 00:10
1/02/2014 7:25:00
7/03/2013 8:30:00 PM
I want to set up the same format for all date's.
I`m doing something like:
Code:
With WS
LastRow = WS.Cells(WS.Rows.Count, "A").End(xlUp).Row
.Range("T" & LastRow).Selection.NumberFormat = "dd/mm/yyyy hh:mm:ss"
End With
but is going wrong.
Any idea how to do it?