Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I need a formula or a VBA code to extract a date into a string. Could
you shed a light? Thanks in advance. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Perhaps something like this:
For a date in A1 B1: =TEXT(A1,"mmddyy") You might also be able to just use a custom number format Select A1 <format<cells<number tab Category: Custom Type: mmddyy Click the [OK] button Is that something you can work with? *********** Regards, Ron XL2002, WinXP "Who I Am" wrote: I need a formula or a VBA code to extract a date into a string. Could you shed a light? Thanks in advance. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Or, try:
replace(yourDateVaraibleOrvalue,"/","") |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=LEFT((TEXT(A1,"MM/DD/YY")),2)&MID((TEXT(A1,"MM/DD/YY")),4,2)&RIGHT((TEXT(A1,"MM/DD/YY")),2)
|
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=LEFT((TEXT(A1,"MM/DD/YY")),2)&MID((TEXT(A1,"MM/DD/YY")),4,2)&RIGHT((TEXT(A1,"MM/DD/YY")),2)
|
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() oops, double post This formula will give you mmddyy as text as long as excel recognizes it as a date regardless of format. Even if it's formatted as a number, general etc. |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=LEFT((TEXT(A1,"MM/DD/YY")),2)&MID((TEXT(A1,"MM/DD/YY")),4,2)&RIGHT((TEXT(A1,"MM/DD/YY")),2)
|
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
refer a cell text in b1 and extract remaing text from a1 | Excel Discussion (Misc queries) | |||
how to Extract the date or text from the whole column | Excel Discussion (Misc queries) | |||
extract date from text | Excel Worksheet Functions | |||
How do I extract a date as text not the 1900 reference number | Excel Discussion (Misc queries) | |||
EXTRACT TEXT FROM A DATE | Excel Worksheet Functions |