Devuelve una cadena que indica el mes especificado.
Sintaxis
MonthName(month[,abbreviate])
Argumentos:
Observaciones
En el siguiente ejemplo se utiliza la función MonthName para devolver un nombre de mes abreviado para una expresión de fecha:
Ejemplo 1:
Dim MyVar MyVar = MonthName(10) 'Output: October
Ejemplo 2:
Dim MyVar1 MyVar1 = MonthName(10, True) 'Output: Oct
Ejemplo 3:
Dim MonthNumber2, MyVar2 MonthNumber2 = 5 MyVar2 = MonthName(MonthNumber2) 'Output: May
Ejemplo 4:
Dim Month1, Month2, Month3 Month1 = MonthName(1) Month2 = MonthName(2, True) Month3 = MonthName(12) Output: January Output: Feb 'Output: December