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
Diamond | Level 26
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]

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.

Explore 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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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