Day (function)

<< Click to Display Table of Contents >>

Day (function)

Day(Expression)

Returns the day of the month for the given date expressed as an integer value.

Expression is a numeric or string expression which represents a date.

See also: Date, Hour, Minute, Month, Now, Second, Time, Weekday, Year

Example:

Sub Main

 T1 = Now     ' Now = current date + time

 MsgBox T1

 MsgBox "Day: " & Day(T1)

 MsgBox "Month: " & Month(T1)

 MsgBox "Year: " & Year(T1)

 MsgBox "Hours: " & Hour(T1)

 MsgBox "Minutes: " & Minute(T1)

 MsgBox "Seconds: " & Second(T1)

End Sub