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

I have a dataset containing 50 data values and want to print only 4th to 10th observations. How can i do this using _N_?

 

Thank you

 

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

Printing and _N_ are not really related concepts. The automatic variable _N_ can be used to keep track of how many times a data step has executed the implicit loop. Printing is normally done using a proc like PROC PRINT or PROC REPORT. You could make a subset of the data using a data step that references _N_ and print that. 

data to_print;
  set sashelp.class;
  if 4 <= _n_ <=10 ; 
run; 
proc print; 
run;

Since you just want one continuous range of observations you could use the FIRSTOBS= and OBS= dataset options to pick which observations you want to print, but that has nothing to do with the data step automatic variable _N_. 

proc print data=sashelp.class (firstobs=4 obs=10); 
run;

 

View solution in original post

3 REPLIES 3
Tom
Super User Tom
Super User

Printing and _N_ are not really related concepts. The automatic variable _N_ can be used to keep track of how many times a data step has executed the implicit loop. Printing is normally done using a proc like PROC PRINT or PROC REPORT. You could make a subset of the data using a data step that references _N_ and print that. 

data to_print;
  set sashelp.class;
  if 4 <= _n_ <=10 ; 
run; 
proc print; 
run;

Since you just want one continuous range of observations you could use the FIRSTOBS= and OBS= dataset options to pick which observations you want to print, but that has nothing to do with the data step automatic variable _N_. 

proc print data=sashelp.class (firstobs=4 obs=10); 
run;

 

novinosrin
Tourmaline | Level 20

data want;
do p=4 to 10;
set sashelp.class point=p;
output;
end;
stop;
run;

Patrick
Opal | Level 21

@variathu

proc print data=sashelp.class (firstobs=4 obs=10);
run;

 

Capture.JPG 

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 3 replies
  • 7688 views
  • 6 likes
  • 4 in conversation