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;
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?
The shell requires that.
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
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!
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.
Ready to level-up your skills? Choose your own adventure.