BookmarkSubscribeRSS Feed
thanikondharish
Fluorite | Level 6

ods rtf file='D:\new\ss.rtf' ;

options ps=3 ls=4 ;
proc report data=sashelp.cars nowd ;
column origin make type msrp ;
run;
ods rtf close ;

 

how to print 20 records for each page

1 REPLY 1
SASKiwi
PROC Star

The way to do this in PROC REPORT would be to create a new column in your report data. This new column would contain a value with changes every 20 rows. For example it could contain values P1 for page 1, P2 for page 2 and so on.

 

You would then define this new column as a BREAK column: https://documentation.sas.com/?docsetId=proc&docsetTarget=p16uti3vzgml7gn1nt3ov7cqxf9i.htm&docsetVer...

 

coded like this: 

break after MyBreakVar / page suppress; 

 

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
  • 1 reply
  • 475 views
  • 0 likes
  • 2 in conversation