HDATEw. Format

Writes date values in the form yyyy mmmmm dd where dd is the day-of-the-month, mmmmm represents the month's name in Hebrew, and yyyy is the year.
Category: Date and Time
Alignment: right

Syntax

HDATEw.

Syntax Description

w
specifies the width of the output field.
Note: Use widths 9, 11, 15, or 17 for the best view.
Default:17
Range:9–17

Details

The HDATEw. format writes the SAS date value in the form yyyy mmmmm dd:
yyyy
is the year
mmmmm
is the Hebrew name of the month
dd
is the day-of-the-month

Example

The following example uses the input value of 15780, which is the SAS date of March 16, 2003.
Statements
Results
----+----1----+----2----+
put day hdate9.;
03xxx 16
put day hdate11.;
2003 xxx 16
put day hdate17.;
2003 xxx 16

See Also