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 (February 2011, week 4)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 25 Feb 2011 01:00:56 -0500
Reply-To:     Ya Huang <ya.huang@AMYLIN.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Ya Huang <ya.huang@AMYLIN.COM>
Subject:      Re: ods, rtf, table of contents, & gchart
Comments: To: Dave Treder <dtreder@GENESEEISD.ORG>

It works fine for me:

ods listing; ods rtf file="c:\temp\junk.rtf" contents toc_data;

goptions reset=all dev=sasemf;

proc gchart data=sashelp.class; by name; vbar weight; run;

ods _all_ close;

Note, this is from the online doc, and you have to do it to see the TOC populated:

To expand the table of contents, right-click under the title in Microsoft Word and select Update Field from the selection list.

The key word is "Under" the title, or the box of "Table of Contents", make sure it is outside and under the box.

HTH

Ya On Thu, 24 Feb 2011 22:10:21 -0500, Treder, David <dtreder@GENESEEISD.ORG> wrote:

>I've found several papers that have been really helpful in using ODS FTF "table of contents" for creating by-school PROC REPORTS. I was hoping to do the same type of thing with PROC GHART (by-school, with a the table of contents), but have not been able to find anything that will work - can someone point me to a paper/reference as a starting point? > >Any suggestions would be greatly appreciated! > >Dave > > > >Scanned by GenNET AV out


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