Date: Tue, 28 Aug 2007 18:26:01 -0000
Reply-To: Perry <jasper6294@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Perry <jasper6294@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: TRANSPOSE ARRAY (Create empty table)
In-Reply-To: <OFD4AD788D.B85EBEC9-ON03257345.00606AC7-03257345.00614A1D@serasa.com.br>
Content-Type: text/plain; charset="us-ascii"
%let lo=1;
%let hi=98;
data datavars1;
do variable1 = &lo. to &hi.;
output;
end;
run;
Will that suit your purpose?
On Aug 28, 1:42 pm, ricardosi...@SERASA.COM.BR (Ricardo G Silva)
wrote:
> Dear Users,
> how can I tranpose a array, generated as:
> %LET LO=3D1;
> %LET HI=3D98;
> DATA DATAVARS1;
> array dt {&lo:&hi};
> RUN;
>
> Or, alternatively, I just need to creat an empty table whose first=20
> variable is a sequence from &lo to &hi.
>
> Thanks.
> Ricardo Gon=E7alves Silva, M. Sc.
> Tecnologia de Cr=E9dito=20
> SERASA S.A.=20
> =C9 (11) - 6847-8889
> ? ricardosi...@serasa.com.br=20
|