TOP

Funzione VBA: Time

YouLibreCalc for Excel logo

Descrizione

La funzione VBA Time restituisce l'ora di sistema corrente.


Sintassi Time

Time

Esempio VBA Time

Risparmiamo il tempo ottenuto dalla funzione Time nella cella A1:

Sub TimeExample1()

    Range("A1") = Time
    
End Sub

Visualizzazione dell'ora ottenuta dalla funzione Time in formato testo:

Sub TimeExample2()

    MsgBox Format(Time, "hh\hnn") 'Resi, ad esempio: 13h24
    
End Sub

Eseguiremo l'azione solo se sono almeno le 17:00:

Sub TimeExample3()

    If Hour(Time) >= 17 Then
        MsgBox "La giornata è quasi finita!"
    End If
    
End Sub
La funzione che restituisce la data corrente e l'ora corrente è la funzione NOW.