Date Value from my Text String

The doomed

Active Member
Joined
Feb 13, 2008
Messages
263
I have the following outputs into a column:

Fri, 29 Aug 2014 10:57:16 Europe/London
Thu, 04 Sep 2014 10:15:19 Europe/London
Thu, 04 Sep 2014 11:06:15 Europe/London
Thu, 04 Sep 2014 11:19:19 Europe/London
Thu, 04 Sep 2014 12:07:57 Europe/London
Thu, 04 Sep 2014 13:45:39 Europe/London

I want to turn each into a date DD-MM-YYYY

Can someone steer me in the right direction please?

<colgroup><col></colgroup><tbody>
</tbody>
 

Excel Facts

Why are there 1,048,576 rows in Excel?
The Excel team increased the size of the grid in 2007. There are 2^20 rows and 2^14 columns for a total of 17 billion cells.
This works

=SUBSTITUTE(MID(A1,6,11)," ","-")+0
and copy down

format cells as dates of course
 
Upvote 0
Try

=DATEVALUE(MID(A1,6,2)&"/"&MID(A1,9,3)&"/"&MID(A1,13,4))

Format as Date.
 
Upvote 0

Forum statistics

Threads
1,213,558
Messages
6,114,296
Members
448,564
Latest member
ED38

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