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

Hi,

I want to replace values with the beginning values.

 

For example..

 

Data example;

input id year cc;

101 2000 0.2

101 2001 0.3

101 2002 0.4

101 2003 0.3

102 1990 0.5

102 1991 0.3

102 1992 0.6

102 1993 0.4

103 2004 0.3

103 2005 0.4

103 2006 0.6

;

run;

 

After replace the values of cc with the beginning period value of cc by id, I want to have the new data set looking like...

Data want;

input id year cc;

101 2000 0.2

101 2001 0.2

101 2002 0.2

101 2003 0.2

102 1990 0.5

102 1991 0.5

102 1992 0.5

102 1993 0.5

103 2004 0.3

103 2005 0.3

103 2006 0.3

;

run;

 

Thank you!

1 ACCEPTED SOLUTION

Accepted Solutions
novinosrin
Tourmaline | Level 20
data want;
set have;
by id; retain _cc; if first.id then _cc=cc; else cc=_cc; run;

retain _cc;

if first.id then  _cc=cc;

else cc=_cc;

run;

 

 

View solution in original post

2 REPLIES 2
novinosrin
Tourmaline | Level 20
data want;
set have;
by id; retain _cc; if first.id then _cc=cc; else cc=_cc; run;

retain _cc;

if first.id then  _cc=cc;

else cc=_cc;

run;

 

 

Kurt_Bremser
Super User

Slight change on @novinosrin's take:

data want;
set have (rename=(cc=_cc));
by id;
retain cc;
if first.id then cc=_cc;
drop _cc;
run;

Just to show another possible solution.

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 16. 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
  • 2 replies
  • 576 views
  • 2 likes
  • 3 in conversation