Date and Time as text in varied format

benwork

Board Regular
Joined
Oct 8, 2010
Messages
69
Hi,

Im looking to fix the date and time format in a current sheet. Its an export from software so the format comes as text.

I tried doing the date + time formulas and have been somewhat successful. I can get the formula to work no problems, the issue that I have is that the text date formats are somewhat inconstant.

I only have a very small data set at this stage (a few days) but what I have found is that the times between 00:00 and 10:00 are not being reported as HH:MM but as H:MM so theres a value sometimes missing which is hurting my left,mid,right formulas

The current format is reported as MM/DD/YYY HH:MM:SS , although as I mentioned, if the first H is a 0, it misses the value.

I do not have any examples of a MM or DD where it could be reported as a single digit M, D (1-9), so I'll have to park that for now and fix that later.

Anyone have any ideas?

Thanks in advanced

Ben

A2 - 11/22/2018 10:14:26
A3 - 11/22/2018 9:28:21

=DATE(MID(A2,7,4),LEFT(A2,2),MID(A2,4,2))+TIME(MID(A2,12,2),MID(A2,15,2),MID(A2,18,2))
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi,

You can test following:

Code:
=DATE(VALUE(RIGHT(LEFT(A2,10),4)),VALUE(LEFT(LEFT(A2,10),2)),VALUE(MID(LEFT(A2,10),4,2)))+VALUE(TRIM(MID(A2,11,LEN(A2)-10)))

and format your result : dd-mm-yy hh:mm:ss

Hope this will help
 
Upvote 0
maybe use PowerQuery

Column1Column1
11/22/2018 10:14:26
22/11/2018 10:14:26​
11/22/2018 9:28:21
22/11/2018 09:28:21​


Code:
[SIZE=1]let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Changed Type with Locale" = Table.TransformColumnTypes(Source, {{"Column1", type datetime}}, "en-US")
in
    #"Changed Type with Locale"[/SIZE]

(my locale is not in US style so that is why there is dd/mm/yyyy)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,968
Messages
6,122,506
Members
449,089
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top