BookmarkSubscribeRSS Feed
mrug12
Calcite | Level 5


i have dataset as below

no   x   y    z    date               month        year

1    a               05/02/2012     5/12         2012

1    b               07/02/2012      07/12       2012

1        a           03/02/2012      3/12         2012

1               a    04/04/2012      04/12      2012

1  a                 05/02/2011       5/12       2011

now i want to convert in following way

no    x    y    z     year

1     b    a   a      2012

1    a                 2011

what logic need to apply here?  

as i have to keep most recent record as per date for year for client no and need to keep most recent values for x y z.

1 REPLY 1
Astounding
PROC Star

First, sort to get the data in order.  This BY statement might be overkill, because I'm not sure if DATE is character or actually represents a SAS date.  It will work either way, however, AS LONG AS YOUR MONTH values are consistent.  You can't store month with leading zeros just some of the time.  You need to have them or omit them consistently, to get the right order:

proc sort data=have;

by no year month date;

run;

Then to get the most recent values:

data want;

   update have (obs=0) have;

   by no year;

   drop date month;

run;

I have to give credit somewhere, but I'm not sure to whom.  A similar solution had been proposed to a similar question at some point.

Good luck.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 643 views
  • 4 likes
  • 2 in conversation