Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
how do convert a cell with 8 numbers 19680422 into the date format 4/22/1968 ?
|
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Replace cell A1 in the expample with the corresponding cell in your worksheet:
=DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2)) -- Kevin Backmann "womit" wrote: how do convert a cell with 8 numbers 19680422 into the date format 4/22/1968 ? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Assuming they start in cell A1, put this in B1:
=DATE(LEFT(A1,4),MID(A1,5,2),RIGHT(A1,2)) Format the cell how you want it to appear, then copy down to B8. Hope this helps. Pete On Jul 2, 2:57*pm, womit wrote: how do convert a cell with 8 numbers 19680422 into the date format 4/22/1968 ? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another one:
=--(TEXT(A1,"0000\/00\/00")) and format it as a date. If you have a single column of these things, you can: select the range data|text to columns (xl2003 menus) fixed width (no separators!) and choose ymd as the date format And then format it the way you like. womit wrote: how do convert a cell with 8 numbers 19680422 into the date format 4/22/1968 ? -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Number format to date | Excel Discussion (Misc queries) | |||
How do you format a number into a date? | Excel Discussion (Misc queries) | |||
convert number to date format | Excel Discussion (Misc queries) | |||
* next to date format in Formatcells Number tab | Excel Discussion (Misc queries) | |||
Excel: I enter date and format for date, but shows as number | Excel Discussion (Misc queries) |