Converting & then copying date format
Solved/Closed
Related:
- Converting & then copying date format
- Excel date format dd.mm.yyyy - Guide
- Format factory - Download - Other
- Kingston format utility - Download - Storage
- Samsung format code - Guide
- Marksheet format in excel - Guide
1 response
Hi,
Just found the answer to my own question so thought I would post incase anyone else finds it helpful.
Needed to write a formula to convert the date in to the appropriate format, then do a paste special - values only to get rid of the formula in the cell so I could pull it into a pivot table.
Anyway...here is the formula to convert a date in this format: 02/01/2003 09:02 to this: Jan-03
=TEXT(B2,"mmm")&"-"&TEXT(B2,"yy")
Enjoy!! :)
Just found the answer to my own question so thought I would post incase anyone else finds it helpful.
Needed to write a formula to convert the date in to the appropriate format, then do a paste special - values only to get rid of the formula in the cell so I could pull it into a pivot table.
Anyway...here is the formula to convert a date in this format: 02/01/2003 09:02 to this: Jan-03
=TEXT(B2,"mmm")&"-"&TEXT(B2,"yy")
Enjoy!! :)
Nov 11, 2010 at 01:09 PM
Apr 2, 2012 at 11:31 AM
I used
=date(TEXT(A238,"yyyy"),TEXT(A238,"dd"),TEXT(A238,"mm"))
to convert a date in the brazilian format dd/mm/yyyy to US style mm/dd/yyyy. It works better than
=DATEvalue(MID(A5,4,2)&"/"&left(A5,2)&"/"&Right(A5,4))