Day

From NSB App Studio
Revision as of 00:34, 24 August 2012 by Brendon (talk | contribs)
Jump to navigation Jump to search

Day(date)

Description

Day returns an integer, ranging from 1 to 31, that represents the day of the month, from a given date. The required parameter, date, can be any expression that represents a date.

Example

Rem Day Example
'Day returns number representing dayof month
Dim Today, NextQuarter
Today = Date
NextQuarter = Today + 90
Print "Today's day is " & Day(Today)
Print "90 days from now it will be " _
  & Day(NextQuarter)

Output

Today's day is 18
90 days from now it will be 16

Related Items

Hour, Minute, Month, Now, Second, WeekDay, Year