A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

How do I change date format m/d/yyyy to mmddyyyy toremove the dash



 
 
Thread Tools Display Modes
  #1  
Old June 11th, 2009, 07:04 PM posted to microsoft.public.excel.worksheet.functions
CyndiR
external usenet poster
 
Posts: 3
Default How do I change date format m/d/yyyy to mmddyyyy toremove the dash

What is the formula to change the date format from m/d/yyyy to mmddyyyy to
remove the dashes and have 2 digits for month, 2 digits for day and 4 digits
for year?

I tried left, mid and right formula but wasn't successful. I think the
commas and parenthesis weren't in the right place.

What is the CORRECT LEFT, MID, RIGHT formula?

From the example 10/8/1967, I tried just the left formula =LEFT(T2,2) and
the outcome was 24, not 10.

How do I fix this?

Thanks,
Cynthia
  #2  
Old June 11th, 2009, 07:15 PM posted to microsoft.public.excel.worksheet.functions
Jacob Skaria
external usenet poster
 
Posts: 5,952
Default How do I change date format m/d/yyyy to mmddyyyy toremove the dash

If the date in cell A1 is in date format try the below

=TEXT(A1,"mmddyyyy")

but this will be text format.....

If this post helps click Yes
---------------
Jacob Skaria


"CyndiR" wrote:

What is the formula to change the date format from m/d/yyyy to mmddyyyy to
remove the dashes and have 2 digits for month, 2 digits for day and 4 digits
for year?

I tried left, mid and right formula but wasn't successful. I think the
commas and parenthesis weren't in the right place.

What is the CORRECT LEFT, MID, RIGHT formula?

From the example 10/8/1967, I tried just the left formula =LEFT(T2,2) and
the outcome was 24, not 10.

How do I fix this?

Thanks,
Cynthia

  #3  
Old June 11th, 2009, 08:04 PM posted to microsoft.public.excel.worksheet.functions
Rick Rothstein[_2_]
external usenet poster
 
Posts: 2,013
Default How do I change date format m/d/yyyy to mmddyyyy toremove the dash

As Jacob indicated, using a formula to change the "format" (actually, it is
changing the value completely) yields a text value AND, because the value is
changed, the result of the formula will no longer be a real date (even if
you convert the text to a number). What about not using a formula and just
change the display format of the original cell. You can do that by selecting
the cell (or cells if more than one date has to be reformatted), clicking
Format/Cells on the menu bar, selecting Custom from the Category list and
putting mmddyyyy into the Type field. This will keep your date as a date,
but display it the way you want it to look.

--
Rick (MVP - Excel)


"CyndiR" wrote in message
...
What is the formula to change the date format from m/d/yyyy to mmddyyyy to
remove the dashes and have 2 digits for month, 2 digits for day and 4
digits
for year?

I tried left, mid and right formula but wasn't successful. I think the
commas and parenthesis weren't in the right place.

What is the CORRECT LEFT, MID, RIGHT formula?

From the example 10/8/1967, I tried just the left formula =LEFT(T2,2) and
the outcome was 24, not 10.

How do I fix this?

Thanks,
Cynthia


  #4  
Old June 11th, 2009, 08:52 PM posted to microsoft.public.excel.worksheet.functions
David Biddulph
external usenet poster
 
Posts: 8,714
Default How do I change date format m/d/yyyy to mmddyyyy toremove the dash

The reason you get 24 from your LEFT formula is that 10/8/1967 is
represented as 24753 (the number of days from the start of 1900).
You'd need to use TEXT(T2,"mmddyyyy") as others have suggested.
--
David Biddulph

"CyndiR" wrote in message
...
What is the formula to change the date format from m/d/yyyy to mmddyyyy to
remove the dashes and have 2 digits for month, 2 digits for day and 4
digits
for year?

I tried left, mid and right formula but wasn't successful. I think the
commas and parenthesis weren't in the right place.

What is the CORRECT LEFT, MID, RIGHT formula?

From the example 10/8/1967, I tried just the left formula =LEFT(T2,2) and
the outcome was 24, not 10.

How do I fix this?

Thanks,
Cynthia



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:28 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.