BookmarkSubscribeRSS Feed
Niugg2010
Obsidian | Level 7

Below is my code. The  last page of rtf output has a blank table row title. How Can I remove that title? Thanks

 

title;
ods rtf file="C:\Users\XXXX\Desktop\111.rtf";
ods escapechar="^";
proc report data=sashelp.cars (obs=426);
column Make Model;
run;
ods rtf text="^S={leftmargin=1in}Dollar ^nsexcept
as ^naaano^ntedas ^nno^ntedas ^nno^ntedas ^nno^ntedas ^nno^ntedas ^nno^nte";
ods rtf close;

 


aaa.jpg
3 REPLIES 3
RW9
Diamond | Level 26 RW9
Diamond | Level 26

The reason you have the extra page is because you output an rtf text statement after your procedure.  What are you triying to do with that text field?  Why not just put it in a footnote?

Niugg2010
Obsidian | Level 7

The shell requires that.  

BrunoMueller
SAS Super FREQ

Hi

 

As an alternate method you could make use of the "COMPUTE AFTER" block. Using this method the text is written as part of the table, and is therefor part of the table measuring, see sample code below

 

title;
ods rtf file="C:\temp\rtf111.rtf";
ods escapechar="^";
proc report data=sashelp.cars (obs=36) nocenter;
column rowid Make Model;
define rowid / computed;
compute rowid;
  _rowId + 1;
  rowId = _rowId;
endcomp;

compute after / style={just=left};
  length msgline $ 1024;
  msgline = "line1 ^n line2 ^n line3  ^n line 4 ^n line 5 ^n line 6";
  l = length(msgline);
  line msgLine $varying1024. l;
endcomp;
run;
/*ods text="^S={leftmargin=1in}line1 ^n line2 ^n line3  ^n line 4 ^n line 5 ^n line 6";*/
ods rtf close;

Bruno

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 3 replies
  • 1349 views
  • 0 likes
  • 3 in conversation