עזרה עבור LibreOfficeDev 7.4
Returns a value that represents the day of the month based on a serial date number generated by \
Day (Number)
Integer
\
This function is basically the opposite of the DateSerial function, returning the day of the month from a serial date number generated by the \
Print Day (DateSerial(1994, 12, 20))
returns the value 20.
Sub ExampleDay
Print "Day " & Day(DateSerial(1994, 12, 20)) & " of the month"
End Sub