Date Formatting

Bedford

Active Member
Joined
Feb 3, 2015
Messages
316
Office Version
  1. 365
Platform
  1. MacOS
When downloading .csv files with a date range in a column separated as; 28/01/2018 I can't seem to change the date format to look as; January 28, 2018. I've tried copying and pasting as values, some text to column options but there doesn't seem to be an easy fix?
Any suggestions?
 

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
did you try to select Date as the format while doing "Text to column"?

another option would be, if your date column is B then
in a helper column (let's assume in Column C)
try this
=datevalue(B2)

once you get it in number format, you can change the format as per your requirement.

Paste value column C and delete Column B
 
Last edited:
Upvote 0
I've tried the text to column, although I can't be sure I'm setting all the settings correctly, not working there. I've also tried the =datevalue formula and it simply returned a #VALUE ? error.
Still stuck with this one...


did you try to select Date as the format while doing "Text to column"?

another option would be, if your date column is B then
in a helper column (let's assume in Column C)
try this
=datevalue(B2)

once you get it in number format, you can change the format as per your requirement.

Paste value column C and delete Column B
 
Upvote 0
Hi,

Try these:


Book1
ABCDE
128/01/2018January 28, 2018TRUE
2January 28, 2018TRUE
Sheet19
Cell Formulas
RangeFormula
C1=TEXT(DATE(RIGHT(A1,4),MID(A1,4,2),LEFT(A1,2)),"mmmm dd, yyyy")+0
C2=DATE(RIGHT(A1,4),MID(A1,4,2),LEFT(A1,2))
E1=ISNUMBER(C1)
E2=ISNUMBER(C2)


C1 formula converts your date to format you want and is converted to a number so you can do further calculations with the result.
D1 formula converts your date to number, and you'll need to Custom Format the cell to mmmm dd, yyyy to show in the format you want.
 
Upvote 0
I did try what jtakw suggested and the results were a bit off;

in cell A1; 10/20/2017, resulted in; August 10, 2018
in cell A2; 10/23/2017, resulted in; November 10, 2018
in cell A3; 10/26/2017, resulted in; February 10, 2019

do you have any suggestions?



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



<tbody>
</tbody>


wrong formula

 
Upvote 0
A
B
1
January 28,2018
28/01/2018​

<tbody>
</tbody>


B1=(MONTH(LEFT(A1,SEARCH(" ",A1)-1)&0)&"/"&MID(A1,SEARCH(" ",A1)+1,2)&"/"&RIGHT(A1,4))+0


Custom format B1 dd/mm/yyyy
 
Upvote 0
When downloading .csv files with a date range in a column separated as; 28/01/2018 I can't seem to change the date format to look as; January 28, 2018. I've tried copying and pasting as values, some text to column options but there doesn't seem to be an easy fix?
Any suggestions?

Maybe this Array Fórmula (use Ctrl+Shift+Enter to enter the formula) in B2 (with your date in A2):

=1*MID(A2,
MIN(IF(ISNUMBER(1*MID(A2,ROW($A$1:$A$1000),1)),ROW($A$1:$A$1000))),
MAX(IF(ISNUMBER(1*MID(A2,ROW($A$1:$A$1000),1)),ROW($A$1:$A$1000)))-
MIN(IF(ISNUMBER(1*MID(A2,ROW($A$1:$A$1000),1)),ROW($A$1:$A$1000)))+1)

Markmzz
 
Upvote 0
Sorry Marziotullio, I'm not sure what you're asking me to do here, ref "A1" contains the data, I'm not exactly sure what you propose I enter into "B1"?



A
B
1
January 28,2018
28/01/2018​

<tbody>
</tbody>


B1=(MONTH(LEFT(A1,SEARCH(" ",A1)-1)&0)&"/"&MID(A1,SEARCH(" ",A1)+1,2)&"/"&RIGHT(A1,4))+0


Custom format B1 dd/mm/yyyy
 
Upvote 0
I gave this a shot, on a mac, to enter as array on mac it's holding command key+enter, but the result in B2 was an error, #VALUE!



Maybe this Array Fórmula (use Ctrl+Shift+Enter to enter the formula) in B2 (with your date in A2):

=1*MID(A2,
MIN(IF(ISNUMBER(1*MID(A2,ROW($A$1:$A$1000),1)),ROW($A$1:$A$1000))),
MAX(IF(ISNUMBER(1*MID(A2,ROW($A$1:$A$1000),1)),ROW($A$1:$A$1000)))-
MIN(IF(ISNUMBER(1*MID(A2,ROW($A$1:$A$1000),1)),ROW($A$1:$A$1000)))+1)

Markmzz
 
Upvote 0

Forum statistics

Threads
1,214,873
Messages
6,122,029
Members
449,061
Latest member
TheRealJoaquin

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