Función Month

Devuelve un número entero entre 1 y 12, ambos incluidos, que representa el mes del año.

Sintaxis

Month(date)

Argumentos:

Date: necesario. Cualquier expresión que pueda representar una fecha.

Formatos de fecha soportados:

  • MM-DD-YYYY
  • MM/DD/YYYY
  • DD-MM-YYYY
  • DD/MM/YYYY
  • YYYY-MM-DD
  • YYYY/MM/DD

Observaciones

En el siguiente ejemplo se utiliza la función Month para devolver el mes actual:

Ejemplo 1:

Dim MyVar
MyVar = Month(Now)
'Output: If current month is January, then it returns 1

Ejemplo 2:

Dim MyDate, MyMonth
MyDate = "21/01/2025"
MyMonth = Month(MyDate)
'Output: 1 (January)

Ejemplo 3:

Dim MyDate1, MyMonth1
MyDate1 = DateAdd("m", 5, "21/01/2025") 
MyMonth1 = Month(MyDate1)                 
'Output: 6 (June)

Ejemplo 4:

Dim MyDateTime2, MyMonth2
MyDateTime2 = "21/01/2025 18:45:30"   ' Date-Time value.
MyMonth2 = Month(MyDateTime2)           ' Returns the month part of the date-time value.
'Output: 1 (January)