BookmarkSubscribeRSS Feed
R_Win
Calcite | Level 5
Hi

I am having a dataset but i dont know th no of obs are there now i want the last obs.Is there any option.
2 REPLIES 2
GertNissen
Barite | Level 11
Data lastobs;
set sashelp.class end=last;
if last then output;
run;
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
With the DATA step approach, there are SET statement options NOBS= and POINT= for this use - sample shown below.

Scott Barry
SBBWorks, Inc.

data _null_;
set sashelp.class nobs=obscount point=obscount;
putlog _all_;
stop;
run;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 863 views
  • 0 likes
  • 3 in conversation