Date: Wed, 2 Sep 2009 20:50:58 -0400
Reply-To: msz03@albany.edu
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Mike Zdeb <msz03@ALBANY.EDU>
Subject: Re: how to export the label to excel? Thanks a lot!!
Content-Type: text/plain;charset=iso-8859-1
hi ... one way, don't use export ...
ods listing close;
ods csv file='z:\xyz.csv';
proc print data=xyz label noobs;
run;
ods csv close;
ods listing;
--
Mike Zdeb
U@Albany School of Public Health
One University Place
Rensselaer, New York 12144-3456
P/518-402-6479 F/630-604-1475
> how to export the label to excel? Thanks a lot!!
>