VBA - Función de formato DateTime

Una función, que ayuda a los desarrolladores a formatear y devolver una expresión de fecha y hora válida.

Sintaxis

FormatDateTime(date,format)

Descripción de parámetros

  • Date - Un parámetro requerido.

  • Format- Un parámetro opcional. Valor que especifica el formato de fecha u hora que se utilizará. Puede tomar los siguientes valores.

    • 0 = vbGeneralDate - Predeterminado

    • 1 = vbLongDate - Fecha de devolución

    • 2 = vbShortDate - Fecha de devolución

    • 3 = vbLongTime - Devuelve el tiempo

    • 4 = vbShortTime - Devuelve el tiempo

Ejemplo

Agregue un botón y agregue la siguiente función.

Private Sub Constant_demo_Click()
   d = ("2013-08-15 20:25")
   msgbox("Line 1 : " & FormatDateTime(d))
   msgbox("Line 2 : " & FormatDateTime(d,1))
   msgbox("Line 3 : " & FormatDateTime(d,2))
   msgbox("Line 4 : " & FormatDateTime(d,3))
   msgbox("Line 5 : " & FormatDateTime(d,4))
End Sub

Cuando ejecuta la función anterior, produce la siguiente salida.

Line 1 : 15/08/2013 8:25:00 PM 
Line 2 : Thursday, 15 August 2013
Line 3 : 15/08/2013
Line 4 : 8:25:00 PM
Line 5 : 20:25