| Date: | Wed, 28 Sep 2005 14:39:19 -0700 |
| Reply-To: | Toby <tobydunn@HOTMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Toby <tobydunn@HOTMAIL.COM> |
| Organization: | http://groups.google.com |
| Subject: | Re: Outputting multiple SAS files to multiple worksheets - how to |
|
| In-Reply-To: | <1127943270.172902.238130@g47g2000cwa.googlegroups.com> |
| Content-Type: | text/plain; charset="iso-8859-1" |
|---|
Cool thanks Howard I was going to really look into this later tonight
but you just saved me a load of time.
Thanks,
Toby Dunn
proc datasets library=sashelp;
libname xlcopy excel 'c:\temp\xl-lib.xls';
copy out=xlcopy memtype=data;
select class shoes retail;
run;
libname xlcopy;
quit;
|