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
|
- w
-
specifies the width of the output field.
Note: Use
widths 9, 11, 15, or 17 for the best view. ![[cautionend]](../../../../common/63294/HTML/default/images/cautend.gif)
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
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.;
|
03
16
|
put day hdate11.;
|
2003
16
|
put day hdate17.;
|
2003
16
|
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.