Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a date in 01/01/2004 form and want to convert that value to January 2004 form as a string. Is there a function in VBA that will let me do this?
Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Dim dte As Date
Dim s As String dte = "1/1/2004" s = Format(dte, "mmmm yyyy") returns: January 2004 HTH Dana DeLouis "Sworkhard" wrote in message ... I have a date in 01/01/2004 form and want to convert that value to January 2004 form as a string. Is there a function in VBA that will let me do this? Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Converting string to number | New Users to Excel | |||
Converting a date to a text field w/o converting it to a julian da | Excel Worksheet Functions | |||
Converting a Date to a string | Excel Programming | |||
Converting a string date into a Excel Date | Excel Programming | |||
Converting a range to string | Excel Programming |