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
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;
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.