עזרה עבור LibreOffice 7.4
Returns the minute of the hour that corresponds to the serial time value that is generated by the TimeSerial or the TimeValue function.
Minute (Number)
Integer
\
This function is the opposite of the \
Print Minute(TimeSerial(12,30,41))
returns the value 30.
Sub ExampleMinute
MsgBox "The current minute is "& Minute(Now)& "."
End Sub