Date: Mon, 16 Oct 2006 13:28:09 +0100
Reply-To: Guido T <cymraegerict@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Guido T <cymraegerict@GMAIL.COM>
Subject: Re: sas dates
In-Reply-To: <1161001189.213885.276850@i3g2000cwc.googlegroups.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Hi,
Try something like ...
data test;
format vdate date9.;
do vdate='01jan2001'd to '01jab2007'd;
output;
end;
run;
Regards
++ Guido
16/10/06, lavanya <lavenskey@gmail.com> wrote:
> hi can anyone tel me how to create dates in sequence.
>
> For examples i want to create sas dates starting from 01jan 2001 to 01
> jan 2007.
>
>
> thank you,
>
> with regards,
> lavanya
>
|