Home |
Search |
Today's Posts |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
' ===== the next line depends on the local language settings,
' ===== so there might be some work to be done DateIn = Replace(DateIn, "mmmm", "January") See if using this line instead makes it work more universally.... DateIn = Replace(DateIn, "mmmm", MonthName(1)) And in the next ElseIf block, replace this... DateIn = Replace(DateIn, "mmm", "Jan") with this... DateIn = Replace(DateIn, "mmm", MonthName(1, True)) Rick |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Dateformat | Excel Programming | |||
Convert UK DateFormat to US | Excel Programming | |||
VBA Excel Chart DateFormat Language Settings Locale | Excel Programming | |||
VBA NumberFormat | Excel Programming | |||
DateFormat (dd-mmm-yyyy) (dd-mmm-jjjj) Problem. | Excel Programming |