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

I have a table lokks like this
Id. Datetime
A2 0NOV05:03:49:19
A2. 0NOV05:02:49:19
A3. 0NOV05:06:49:19
A3. 0NOV05:08:49:19
What i need is to pull the last entry obo

Like this
Id. Datetime
A2 0NOV05:03:49:19
A3. 0NOV05:08:49:19

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Both are relatively easy:

 

data want;

set have;

by id;

* To get last entry;

if last.id;

* To get first entry;

if first.id;

run;

View solution in original post

3 REPLIES 3
Gil_
Quartz | Level 8
Sorry its last entry not 1st
Astounding
PROC Star

Both are relatively easy:

 

data want;

set have;

by id;

* To get last entry;

if last.id;

* To get first entry;

if first.id;

run;

Reeza
Super User

You should consider reviewing the BY group processing chapter in the documentation. It includes some good information on how FIRST/LAST work and the available options.

 

https://documentation.sas.com/?docsetId=lrcon&docsetTarget=n138da4gme3zb7n1nifpfhqv7clq.htm&docsetVe...

 


@Gil_ wrote:

I have a table lokks like this
Id. Datetime
A2 0NOV05:03:49:19
A2. 0NOV05:02:49:19
A3. 0NOV05:06:49:19
A3. 0NOV05:08:49:19
What i need is to pull the last entry obo

Like this
Id. Datetime
A2 0NOV05:03:49:19
A3. 0NOV05:08:49:19


 

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
  • 1055 views
  • 0 likes
  • 3 in conversation