Ajuda del LibreOffice 24.8
La funció MonthName retorna el nom traduït corresponent al número de mes que especifiqueu.
MonthName(Month as Integer [,Abbreviate as Boolean])
String
Month: valor d'1 a 12, de gener a desembre, el nom de mes traduït del qual s'ha de retornar.
Abbreviate: opcional. Un valor booleà que indica si s'ha d'abreujar el nom del mes.
REM ***** BASIC *****
Option VBASupport 1
Sub Example_MonthName
Dim mBirthday as Integer
mBirthday = 1
print mBirthday &" "& MonthName(mBirthday,False)
End Sub