DAY Function

Returns the day of the month from a SAS date value.

Category: Date and Time

Syntax

DAY(date)

Required Argument

date

specifies a SAS expression that represents a SAS date value.

Details

The DAY function produces an integer from 1 to 31 that represents the day of the month.

Example

The following SAS statements produce this result:
SAS Statement
Result
now='05may97'd;
d=day(now);
put d;
 
5

See Also