עזרה עבור LibreOfficeDev 7.4
Returns the month of a year from a serial date that is generated by the DateSerial or the DateValue function.
Month (Number)
Integer
\
This function is the opposite of the \
Print Month(DateSerial(1994, 12, 20))
returns the value 12.
Sub ExampleMonth
MsgBox "" & Month(Now) ,64,"The current month"
End Sub