Ora formato VBA

Questo tutorial dimostrerà come utilizzare la funzione Format VBA per formattare l'ora.

Formato Funzione e Ora

Ora formato VBA con formati predefiniti

La funzione Formato VBA può essere utilizzata per convertire un numero in una stringa con un formato predefinito. I formati disponibili per il tempo sono lungo, medio e breve.

1234567891011121314 SottoformatoOraEsempio_1()Dim DateEx come dataDataEx = #4/18/2020 6:05:07 PM#MsgBox Format(DateEx, "Long Time") 'Il risultato è: 18:05:07MsgBox Format(DateEx, "Medium Time") "Il risultato è: 18:05"MsgBox Format(DateEx, "Short Time") 'Il risultato è: 18:05DateEx = #2/18/2021 6:05:07 AM#MsgBox Format(DateEx, "Long Time") 'Il risultato è: 6:05:07 AMMsgBox Format(DateEx, "Medium Time") 'Il risultato è: 06:05 AMMsgBox Format(DateEx, "Short Time") 'Il risultato è: 06:05Fine sottotitolo

Tempo formato VBA con formati personalizzati

La funzione Formato VBA può essere utilizzata per convertire un numero in una stringa con formati personalizzati. I simboli h e hh vengono utilizzati per le ore, n e nn per i minuti, s e ss per i secondi, ttttt per il tempo pieno in base alle impostazioni del sistema e AM/PM, am/pm, A/P, a/p, AMPM per l'am -pm sistema.

1234567891011121314151617 Sub FormatTimeExample_2()Dim DateEx come dataDataEx = #4/18/2020 6:05:07 PM#MsgBox Format(DateEx, "hh:nn:ss") 'Il risultato è: 18:05:07MsgBox Format(DateEx, "h:n:s AM/PM") 'Il risultato è: 18:5:7MsgBox Format(DateEx, "h") 'Il risultato è: 18MsgBox Format(DateEx, "hh") 'Il risultato è: 18MsgBox Format(DateEx, "h:n") 'Il risultato è: 18:5MsgBox Format(DateEx, "hh:nn") 'Il risultato è: 18:05MsgBox Format(DateEx, "hh:nn:s") 'Il risultato è: 18:05:7MsgBox Format(DateEx, "hh:nn:ss") 'Il risultato è: 18:05:07Formato MsgBox (DateEx, "\T\i\m\e\ \i\s\:\ hh:nn:ss")'Il risultato è: Il tempo è: 18:05:07Fine sottotitolo
wave wave wave wave wave