Sample 24605: Creating a SASĀ® date or SAS time from a SAS datetime
Create a SAS date value, the number of days since
January 1, 1960, from a SAS datetime value using the
DATEPART function.
Create a SAS time value, the number of seconds since
midnight, from a SAS datetime value using the TIMEPART
function.
Note:
A SAS datetime is stored as the number of seconds since
January 1, 1960.
In this sample, the DATETIME function could be used
to create START instead of using SAS datetime constant syntax.
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
data test;
/* Datetime constant syntax */
start='16Aug2004 12:34'dt;
sas_date=datepart(start);
sas_time=timepart(start);
format sas_date mmddyy8. sas_time time5.;
run;
proc print;
run;
These sample files and code examples are provided by SAS Institute
Inc. "as is" without warranty of any kind, either express or implied, including
but not limited to the implied warranties of merchantability and fitness for a
particular purpose. Recipients acknowledge and agree that SAS Institute shall
not be liable for any damages whatsoever arising out of their use of this material.
In addition, SAS Institute will provide no support for the materials contained herein.
Obs start sas_date sas_time
1 1408278840 08/16/04 12:34
Starting with a SAS datetime, create a date value with the DATEPART function and a time value with the TIMEPART function.
| Type: | Sample |
| Topic: | SAS Reference ==> DATA Step SAS Reference ==> Functions ==> Date and Time
|
| Date Modified: | 2005-12-16 03:02:54 |
| Date Created: | 2004-09-30 14:08:57 |
Operating System and Release Information
| SAS System | Base SAS | All | n/a | n/a |