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

Hello, I would like to replace value in the amount with last observation amount value when only the description is "r" or "ra" within same account. Could you please help me how to do that ? Thank you so much !

data have;

infile datalines delimiter=',';

input account description $ amount;

datalines;

123,a,0

123,a,0

123,r,1    /**<- replace with last value (30) when "r" or "ra" */

123,r,20   /**<- replace with last value (30) when "r" or "ra" */

123,ra,30

123,w,4

234,b,1

234,c,20

234,ra,400  /**<- replace with last value (200) when "r" or "ra" */

234,r,200

234,c,200

;

run;

data want;

infile datalines delimiter=',';

input account description $ amount;

datalines;

123,a,0

123,a,0

123,r,30

123,r,30

123,ra,30

123,w,4

234,b,1

234,c,20

234,ra,200

234,r,200

234,c,200

;

run;

1 ACCEPTED SOLUTION

Accepted Solutions
pradeepalankar
Obsidian | Level 7

data have;

infile datalines delimiter=',';

input account description $ amount;

datalines;

123,a,0

123,a,0

123,r,1

123,r,20

123,ra,30

123,w,4

234,b,1

234,c,20

234,ra,400

234,r,200

234,c,200

;

run;

data test;

set have(where =(description in ('r','ra')));

by account;if last.account then output ;run;

proc sql;

update have 

set amount=(select amount from test where test.account=have.account )

where have.description in ('r','ra');

quit;

View solution in original post

4 REPLIES 4
TarunKumar
Pyrite | Level 9

there is huge diff in input data and ouput data. pls check and pos your requirement again.

for eg 123,r,30 and 234,r,300 is not avilable in have data set.

davidnamh
Calcite | Level 5

HI TarunKumar,

I have updated my codes for your review. Thanks !

pradeepalankar
Obsidian | Level 7

data have;

infile datalines delimiter=',';

input account description $ amount;

datalines;

123,a,0

123,a,0

123,r,1

123,r,20

123,ra,30

123,w,4

234,b,1

234,c,20

234,ra,400

234,r,200

234,c,200

;

run;

data test;

set have(where =(description in ('r','ra')));

by account;if last.account then output ;run;

proc sql;

update have 

set amount=(select amount from test where test.account=have.account )

where have.description in ('r','ra');

quit;

davidnamh
Calcite | Level 5

Thank you so much pradeepalankar !

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
  • 4 replies
  • 1682 views
  • 1 like
  • 3 in conversation