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

Hello everyone.

I have panel data, and I have some individuals who have multiple observations in the same year.

What I want to do is that I want to keep the last observation of those individuals with multiple observations in the same year.

Visually, I want something like this (I thought this would show better what I wanna do)

Id   data   year  ->  Id   data   year

1     2    2009            1     3    2009

1     3    2009            1     2    2010

1     2    2010            2     1    2009

2     1    2009           2     3    2010

2     2    2010

2     3    2010

 

I was trying to use command like:   "Data …. ;   Set ….;  by ID year;   if last.ID; run;", but this would only leave last observation of the individual of the last year (assuming that I sorted by ID and year) and erase the previous year. I was wondering if you have a suggestion or idea to this issue..

 

Thank you very much for your help!

1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

Almost there, assuming correct sort order:

Data …. ;   Set ….;  by ID year;   if last.Year; run;",

View solution in original post

2 REPLIES 2
ballardw
Super User

Almost there, assuming correct sort order:

Data …. ;   Set ….;  by ID year;   if last.Year; run;",

master_kim
Fluorite | Level 6
thank you very much! that was a perfect answer!

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

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 617 views
  • 1 like
  • 2 in conversation