I have one dataset with two variables country,status. Here country is group variable and status is result variable need to print in proc report for rtf file..
ods rtf file='path';
proc report data=source ;
column country status ;
define counry/group;
run;
ods rtf close;
Question:
status variable having more than 1000 letters . no able to fit into single page text is continuing to next page like overflow but group value not coming for next page how to display group value if other variable values/text overflow not continuing to next page.
Try "ods tagsets.rtf + spanrows" :
data x;
do x='A' ,'B';
do y=1 to 40;
output;
end;
end;
run;
ods tagsets.rtf file="c:\temp\example.rtf" startpage=no ;
proc report data=x nowd spanrows;
column x y;;
define x/group;
define y/display;
run;
ods tagsets.rtf close;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.