Separate Date

Reec0n

New Member
Joined
Jan 30, 2017
Messages
20
An easy one for the forum I'm sure:

I have a list of these:

Wed Aug 01 11:13:36 2018

I would like to take the date only and have them in a separate column like this 01/08/2018

All help welcomed,

tia

<tbody>
</tbody>
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
Assuming it's only the date and time in your cell:

=(MID(A1,5,6)&", "&RIGHT(A1,4))+0

Format as the date format dd/mm/yyyy


Excel 2010
AB
1Wed Aug 01 11:13:36 201801/08/2018
Sheet1
Cell Formulas
RangeFormula
B1=(MID(A1,5,6)&", "&RIGHT(A1,4))+0
 
Last edited:
Upvote 0
Assuming it's only the date and time in your cell:

=(MID(A1,5,6)&", "&RIGHT(A1,4))+0

Format as the date format dd/mm/yyyy

Excel 2010
AB
1Wed Aug 01
11:13:36 2018
01/08/2018

<colgroup><col style="width: 25pxpx"><col><col></colgroup><thead>
</thead><tbody>
</tbody>
Sheet1

Worksheet Formulas
CellFormula
B1=(MID(A1,5,6)&", "&RIGHT(A1,4))+0

<thead>
</thead><tbody>
</tbody>

<tbody>
</tbody>

Thank you for this; however, I get a #VALUE ! error? it is the same as above so not sure -if i remove the +0 at the end i get date as Aug 01, 2018 :|
 
Upvote 0
I wonder if you have extra spaces in that.

Does this work for you?

=(TRIM(MID(A1,5,6)&", "&RIGHT(A1,4)))+0
 
Upvote 0
Can you post an exact example of the data where it is not working?
 
Upvote 0

Forum statistics

Threads
1,215,514
Messages
6,125,265
Members
449,219
Latest member
daynle

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