Date: Fri, 8 Aug 2003 19:32:18 +0300
Reply-To: Arto Raiskio <arto.raiskio@SUOMENPOSTI.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Arto Raiskio <arto.raiskio@SUOMENPOSTI.COM>
Subject: Re: questions on datetime
"Ian Whitlock" wrote
> data _null_;
> input A_START ;
> put 'Before ' a_start datetime.;
> A_START = a_start + "1jan1970:00:00:0"dt ; /* reset 0 point */
> put 'After ' a_start datetime. ;
> cards;
> 1059569915
> 1375102715
> run ;
perfect! many thanks.
|