TOP

Funzione VBA: Day

Descrizione

La funzione VBA Day restituisce un numero intero corrispondente al giorno della data specificata.


Sintassi Day

Day(data)

Esempio VBA Day

Utilizzando la funzione Day per ottenere le informazioni rilevanti da una data:

Sub DayExample1()
    
    myDate = #10/30/2020#
    
    MsgBox Day(myDate)   'Resi: 30

End Sub

Questa funzione accetta anche date in formato testo:

Sub DayExample2()
    
    myDate = "30/10/2020"
    
    MsgBox Day(myDate)   'Resi: 30

End Sub
La funzione che restituisce il mese corrente è MONTH.
Una funzione che restituisce l'anno corrente: YEAR.