BookmarkSubscribeRSS Feed
thanikondharish
Calcite | Level 5

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.

1 REPLY 1
Ksharp
Super User

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;

Ksharp_0-1722912292159.png

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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