Convert long text date in CSV to proper Excel date

rstuart

New Member
Joined
Apr 26, 2009
Messages
32
Office Version
  1. 365
Platform
  1. Windows
Currently exporting date into Excel in this format: Jun 22, 2019, 09:38 AM

Update: the dates appear in each cell within the column (1 date per cell in a column needs to be converted into another column of short dates)

Want to convert to: 22/06/2019

Have tried long way of Text to Columns and replacing "Jun" and other months to "6" so I can use DATE function to put it together to get result - but would like a quicker method with having to insert all the columns to unpack the date just to put it back together.

Thanks :)
 
Last edited:

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Sorry yes - 1 date per cell down the column
Does this work for you?
If not, a few more examples and expected results would help as one isn't much use in trying to find any patterns (eg whether the 'day' part always has 2 digits or not). ;)

<b>Date</b><br /><br /><table border="1" cellspacing="0" cellpadding="0" style="font-family:Arial,Arial; font-size:8pt; background-color:#ffffff; padding-left:2pt; padding-right:2pt; "> <colgroup><col style="font-weight:bold; width:30px; " /><col style="width:164px;" /><col style="width:97px;" /></colgroup><tr style="background-color:#cacaca; text-align:center; font-weight:bold; font-size:8pt; "><td > </td><td >A</td><td >B</td></tr><tr style="height:21px ;" ><td style="font-size:8pt; background-color:#cacaca; text-align:center; " >1</td><td style="font-size:10pt; ">Jun 22, 2019, 09:38 AM</td><td style="font-size:10pt; text-align:right; ">22/06/2019</td></tr></table><br /><table style="font-family:Arial; font-size:10pt; border-style: groove ;border-color:#00ff00;background-color:#fffcf9; color:#000000; "><tr><td ><b>Spreadsheet Formulas</b></td></tr><tr><td ><table border = "1" cellspacing="0" cellpadding="2" style="font-family:Arial; font-size:9pt;"><tr style="background-color:#cacaca; font-size:10pt;"><td >Cell</td><td >Formula</td></tr><tr><td >B1</td><td >=DATEVALUE(MID<span style=' color:008000; '>(A1,FIND<span style=' color:#0000ff; '>(",",A1)</span>-2,2)</span>&LEFT<span style=' color:008000; '>(A1,3)</span>&MID<span style=' color:008000; '>(A1,9,4)</span>)</td></tr></table></td></tr></table>
 
Last edited:
Upvote 0
Your date format is "backward" from the one I use, so I have no way of testing whether this formula will work for you or not (it works correctly for me in my locale)... give it a try and let me know

=INT(SUBSTITUTE(A1,",","",2))

Note: You will have to format this cell with your date format, what you need to check is if the day and month numbers are correct.
 
Last edited:
Upvote 0
Your date format is "backward" from the one I use, so I have no way of testing whether this formula will work for you or not (it works correctly for me in my locale)... give it a try and let me know

=INT(SUBSTITUTE(A1,",","",2))

Note: You will have to format this cell with your date format, what you need to check is if the day and month numbers are correct.
If the above does not work for you, then perhaps this one will...

=0+MID(SUBSTITUTE(A1,","," "&LEFT(A1,3)),5,11)
 
Upvote 0
.. then perhaps this one will...

=0+MID(SUBSTITUTE(A1,","," "&LEFT(A1,3)),5,11)
This one for me, not the other. :)
Different date systems make it awkward, don't they? :(
 
Last edited:
Upvote 0

Forum statistics

Threads
1,216,084
Messages
6,128,721
Members
449,465
Latest member
TAKLAM

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