Date: Mon, 17 Nov 2008 07:12:10 -0800
Reply-To: Akshaya <akshaya.nathilvar@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Akshaya <akshaya.nathilvar@GMAIL.COM>
Organization: http://groups.google.com
Subject: Re: how to create two macro varible with proc sql
Content-Type: text/plain; charset=ISO-8859-1
Proc sql noprint;
select cats("rf_",id,"=",quote(strip(label))), cats("rf_", id)
into :laberlers separated by " ", :rfname separated by "
"
from user.rfs_labels;
Quit;
%put &laberlers &rfname;
Akshaya
|