changing date format

burnsa9

New Member
Joined
Jul 20, 2017
Messages
11
Hello, I am trying to change the date formate. right now it looks like 01.01.1111 I want it to look like 1/1/1111. I tried uisng the number formating, but it wont work. when I select an example the formula bar has an apostrophe in front of the date so I don't know if that has something to do with it. an example: '01/01/1111
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Your date is a text string so number formatting does not change it. Remove the apostrophe and then it will be an Excel date that you can use formatting on.
 
Upvote 0
The apostrophe means that the values are text, you'll need to use text to columns conversion
Highlight the column then On the Data tab select Text to Columns & click Finish
 
Upvote 0
a
b
1
01.01.1111 01/01/1111

<tbody>
</tbody>


b1=SUBSTITUTE(A1,".","/")

remenber Excel stores dates in sequential serial numbers beginning with January 1st, 1900 so 01/1/1111 is a text not a date
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,479
Messages
6,125,041
Members
449,206
Latest member
Healthydogs

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