BookmarkSubscribeRSS Feed
thanikondharish
Calcite | Level 5

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; 

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 287 views
  • 0 likes
  • 2 in conversation