Text Dates....

Joined
Jun 22, 2015
Messages
28
I have a column of data that includes date/time in a text format (Dec 28, 2016 10:32 AM). What I would like to do is use a formula to return just the date element of the field (i.e. 28/12/2016). I've tried using the INT and DateValue functions, but I just get a #Value ! error.

All help appreciated.
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi, here is one option you can try:


Excel 2013/2016
AB
1Dec 28, 2016 10:32 AM28/12/2016
2Dec 1, 2016 10:32 AM01/12/2016
Sheet1
Cell Formulas
RangeFormula
B1=0+(MID(A1,5,FIND(",",A1)-5)&LEFT(A1,3)&MID(A1,FIND(",",A1)+2,4))
 
Upvote 0
I have a column of data that includes date/time in a text format (Dec 28, 2016 10:32 AM). What I would like to do is use a formula to return just the date element of the field (i.e. 28/12/2016). I've tried using the INT and DateValue functions, but I just get a #Value ! error.
If you "date" cell is formatted as Text, then give this formula a try...

=INT(0+A1)

This will return the serial date value so you will have to use Cell Formatting to make it display the way you want.
 
Upvote 0
Last edited:
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,265
Members
452,627
Latest member
KitkatToby

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