Renvoie une chaîne indiquant le mois spécifié.
Syntaxe
MonthName(month[,abbreviate])
Arguments :
Remarques
L'exemple ci-après utilise la fonction MonthName afin de renvoyer un nom de mois abrégé pour une expression de date :
Exemple 1 :
Dim MyVar MyVar = MonthName(10) 'Output: October
Exemple 2 :
Dim MyVar1 MyVar1 = MonthName(10, True) 'Output: Oct
Exemple 3 :
Dim MonthNumber2, MyVar2 MonthNumber2 = 5 MyVar2 = MonthName(MonthNumber2) 'Output: May
Exemple 4 :
Dim Month1, Month2, Month3 Month1 = MonthName(1) Month2 = MonthName(2, True) Month3 = MonthName(12) Output: January Output: Feb 'Output: December