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.