BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
vandhan
Fluorite | Level 6

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?

1 ACCEPTED SOLUTION

Accepted Solutions
Steelers_In_DC
Barite | Level 11

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;

View solution in original post

2 REPLIES 2
Steelers_In_DC
Barite | Level 11

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;

VarmaSekhar
Calcite | Level 5

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

 

 

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

What is Bayesian Analysis?

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.

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
  • 2 replies
  • 942 views
  • 0 likes
  • 3 in conversation