Aide LibreOffice 24.8
La fonction MonthName renvoie le nom du mois localisé du numéro spécifié du mois.
MonthName(Month as Integer [,Abbreviate as Boolean])
String
Month: valeur de 1 Ă 12, janvier Ă dĂ©cembre, dont le nom du mois localisĂ© doit ĂȘtre renvoyĂ©.
Abbreviate: facultatif. Une valeur logique qui indique si le mois doit ĂȘtre abrĂ©gĂ©.
REM ***** BASIC *****
Option VBASupport 1
Sub Example_MonthName
Dim mBirthday as Integer
mBirthday = 1
print mBirthday &" "& MonthName(mBirthday,False)
End Sub