Writes SAS date values in the form mmdd[yy]yy or mm/dd/[yy]yy, where a forward slash is the separator and the year appears as either 2 or 4 digits.
Category: | Date and Time |
Alignment: | Right |
specifies the width of the output field.
Default | 8 |
Range | 2–10 |
Interaction | When w has a value of from 2 to 5, the date appears with as much of the month and the day as possible. When w is 7, the date appears as a two-digit year without slashes. |
Statements
|
Results
|
---|---|
|
----+----1----+ |
select put(19431,mmddyy2.); |
03 |
select put(19431,mmddyy3.); |
03 |
select put(19431,mmddyy4.); |
0314 |
select put(19431,mmddyy5.); |
03/14 |
select put(19431,mmddyy6.); |
031413 |
select put(19431,mmddyy7.); |
031413 |
select put(19431,mmddyy8.); |
03/14/13 |
select put(19431,mmddyy10.); |
03/14/2013 |