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


 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 900 views
  • 0 likes
  • 3 in conversation