LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (September 2006, week 3)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
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
Comments:   To: sas-l@uga.edu
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?


Back to: Top of message | Previous page | Main SAS-L page