Convert american format text to date Uk format

patrickmcclean

New Member
Joined
Jan 15, 2014
Messages
3
Hi
I wonder if some one can help

I am extracting dates from another system to excel. The dates export to excel in a text format.

I want to convert the text format to a date format that can be sorted.
When exported it does not have the little green triangle in the top left corner of the cell.

So I can use the following approach

Cell A1: contains the date in text format
Cell A2: I can add =DATEVALUE(A1)
Cell A3: =A2 (with desired date format)

The problem I have is that the dates that are extracted to excel are in an American format and text. 11/29/2014
Any thoughts on how to convert to the uk date format and convert from text to date format such that they could be sorted e.g. 29 Nov 2014
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
You can do it this way in a formula.

Code:
RIGHT([American Date Value],2)&"/"&MID([American Date Value],6,2)&"/"&LEFT([American Date Value],4)
 
Upvote 0

Forum statistics

Threads
1,214,416
Messages
6,119,384
Members
448,889
Latest member
TS_711

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