I have sashelp.class dataset. using proc report i wanted to report first 9 observations in first page and remaining 10 in 2nd page.
How would I do that?
The power of google compels you:
data have;
set sashelp.class;
if _N_ < 9 then p = 1;
else p = 2;
run;
proc report data=have out=want;
define p / order noprint;
break after p / page;
The power of google compels you:
data have;
set sashelp.class;
if _N_ < 9 then p = 1;
else p = 2;
run;
proc report data=have out=want;
define p / order noprint;
break after p / page;
I have similar objective I need to accomplish. I need to print my dataset using proc recport so that each page has specific observations. For example I need 40 observations in each page (I don't want to hard code this number). This number may change depending upon on the dataset size which may be passed on via a macro variable.
Thanks
Varma
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.