עזרה עבור LibreOffice 7.4
Returns an integer that represents the seconds of the serial time number that is generated by the TimeSerial or the TimeValue function.
Second (Number)
Integer
\
This function is the opposite of the \
Print Second(TimeSerial(12,30,41))
returns the value 41.
Sub ExampleSecond
MsgBox "The exact second of the current time is "& Second( Now )
End Sub