BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hello
if in a ods rtf i put this (with startpage=yes)

proc greplay igout=work.gseg
tc=sashelp.templt template=whole nofs;
treplay 1:matgraph;
run;
quit;

there is not the title and the footnote for the page where i use this proc greplay but the page is counted in the rapport ? what can i do ?
1 REPLY 1
Cynthia_sas
SAS Super FREQ
Hi:
Look at this Tech Support example:
http://support.sas.com/kb/15/364.html

When I ran the second bit of code (with the ODS RTF and the NOGTITLE option), I did get a title in the RTF file. Basically, the NOGTITLE option says to move the title OUT of SAS/Graph land and into ODS RTF land.

If you still have problems with the output and titles, after trying this technique, your best bet for help is to contact SAS Tech Support.

cynthia

[pre]
goptions reset=all;
ods rtf file='test.rtf' nogtitle;

title1 "My Title";
proc greplay igout=gseg nofs;
. . . greplay statements . . .
run;
quit;
ods rtf close;

[/pre]

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 836 views
  • 0 likes
  • 2 in conversation