I\'m trying to solve such problem: In macro, that I\'m using, one of the parts is to retrieve date month (in full naming), currently is used :
LastMonth =
Try this, found it on a forum and it seems to work.
Public Function Format_en(Datum As Date) As String
Dim DD As String
Dim MMM As String
Dim YY As String
DD = Format(Datum, "dd")
MMM = Choose(Month(Datum), "January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
YY = Format(Datum, "yy")
Format_en = DD & "." & MMM & " " & YY
End Function
MsgBox Format_en(Date)
Reference: http://www.office-loesung.de/ftopic99887_0_0_asc.php
Cheers