Collabora Office 24.04 Help
TimeSerial 또는 TimeValue 함수를 사용하여 생성한 연속 시간 번호의 초를 나타내는 정수를 구합니다.
Second (Number)
Integer
Number: 초를 계산하는 데 사용되는 연속 시간 번호를 포함하는 숫자 식입니다.
이 함수는 TimeSerial 함수와 반대되는 것으로, TimeSerial 또는 TimeValue 함수를 사용하여 생성한 연속 시간 값의 초를 구합니다. 예를 들어,
Print Second(TimeSerial(12,30,41))
값 41을 구합니다.
Sub ExampleSecond
MsgBox "The exact second of the current time is "& Second( Now )
End Sub