| Date: | Tue, 19 Sep 2006 11:55:38 -0700 |
| Reply-To: | Bill McKirgan <Bill.McKirgan@GMAIL.COM> |
| Sender: | "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU> |
| From: | Bill McKirgan <Bill.McKirgan@GMAIL.COM> |
| Organization: | http://groups.google.com |
| Subject: | Re: ods output assistance |
|
| In-Reply-To: | <1158689116.642448.6990@k70g2000cwa.googlegroups.com> |
| Content-Type: | text/plain; charset="iso-8859-1" |
|---|
By 'table' do you mean excel? If so, this might work. It uses a
sashelp example that is wrapped with ODS open and close statements.
ODS HTML is used, but the file extension is .xls. Excel recognizes the
file.
ods html file='c:\temp\odsfile.xls' style=minimal;
proc means data = sashelp.class n mean min max;
class sex;
var height;
run;
quit;
ods html close;
vncntj@hotmail.com wrote:
> how can i take this:
>
> proc means data = pma.Yf n mean min max;
> class city;
> var cost;
> run;
> quit;
>
> and
>
> create an ods "table" of the data?
|