DTWKDATXw. Format
Writes the date part of a SAS datetime value as
the day of the week and the date in the form day-of-week, dd
month-name yy (or yyyy).
Category: |
Date and Time |
Alignment: |
Right |
Syntax
Arguments
w
specifies the width
of the output field.
Details
The DTWKDATX
w.
format writes SAS date values in the form
day-of-week,
dd month-name,
yy or
yyyy,
where
day-of-week
is either the first
three letters of the day name or the entire day name.
dd
is an integer that
represents the day of the month.
month-name
is either the first
three letters of the month name or the entire month name.
yy or yyyy
is a two-digit or
four-digit integer that represents the year.
Comparisons
The DTWKDATX
w.
format is similar to the WEEKDATX
w.
format in that they both write date values. The difference is that
DTWKDATX
w. expects a SAS datetime
value as input, and WEEKDATX
w.
expects a SAS date value.
Example
The example table uses
as input the value 1678898894, which is the SAS datetime value that
corresponds to March 14, 2013, at 04:48:14 PM.
|
|
|
----+----1----+----2----+----3
|
select put(1678898894,dtwkdatx.);
|
|
select put(1678898894,dtwkdatx3.);
|
|
select put(1678898894,dtwkdatx8.);
|
|
select put(1678898894,dtwkdatx25.);
|
|