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

Hi,

From a given SAS Dataset, how can I fetch last but one record or third record from the last without doing hard coding. I don't want to do hard coding the values as the number of observations keep on changing. 

 

TIA.

 

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20

Hi @VVDR  Using SASHELP.CLASS dataset that has 19 records, here is an illustration-

The comments should make sense to you

/*last but one=numofrecs-1,third=last minus 2 records*/


data want;
/*last but one=numofrecs-1,third=last minus 2 records*/
 do _n_= nobs-1, nobs-2;
  set sashelp.class nobs=nobs point=_n_;
  output;
 end;
 stop;
run;

View solution in original post

3 REPLIES 3
novinosrin
Tourmaline | Level 20

Hi @VVDR  Using SASHELP.CLASS dataset that has 19 records, here is an illustration-

The comments should make sense to you

/*last but one=numofrecs-1,third=last minus 2 records*/


data want;
/*last but one=numofrecs-1,third=last minus 2 records*/
 do _n_= nobs-1, nobs-2;
  set sashelp.class nobs=nobs point=_n_;
  output;
 end;
 stop;
run;
Patrick
Opal | Level 21

Are these assignment questions?

 

Here one way to get what the question asked for. The code below selects the 3rd last column.

%let n_obs_from_last=3;
data want;
  obs=nobs -&n_obs_from_last +1;
  if obs>0 then
    do;
      set sashelp.class nobs=nobs point=obs;
      output;
    end;
  stop;
run;
Reeza
Super User
SAS supports indexing to allow for efficient data retrieval. If you need to extract records by varying criteria you may want to add in some indexes to support your queries.

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
  • 3 replies
  • 1461 views
  • 1 like
  • 4 in conversation