VBA Second函數
Second 函數
Second函數返回一個介於0和59,代表小時指定時間戳記的秒值。
語法
Second(time)
示例
添加一個按鈕,並添加以下功能
Private Sub Constant_demo_Click() msgbox("Line 1: " & Second("3:13:25 PM")) msgbox("Line 2: " & Second("23:13:45")) msgbox("Line 3: " & Second("2:20 PM")) End Sub
當執行函數輸出如下所示:
Line 1: 25 Line 2: 45 Line 3: 0