BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
sweetgorgor
Calcite | Level 5
PortfolioValueNew_Value
A22
A33
A 3
A 3
B22
B22
B 2

Hi, I have a table with the  first 2 columns (Portfolio, Value) where I want to create a 3rd column to fill in all the blanks with the previous (Latest value), by portfolio. Essentially I am trying to derive column 3. I tried to use Lag and retain in a data step I can't seem to get it to work. can someone help?

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Mit
Calcite | Level 5 Mit
Calcite | Level 5

data have;
input portfolio $ value;
cards;
A 2
A 3


B 2


B 4


,
run;

proc sort data=have ;
by portfolio;
run;

data want;
set have;
by portfolio;
retain new_value;
if not missing(value) then new_value=value;
run;


portfolio


value


new_value


A


2


2


A


3


3


A


3


B


2


2


B


2


B


4


4


B


4

View solution in original post

3 REPLIES 3
Mit
Calcite | Level 5 Mit
Calcite | Level 5

data have;
input portfolio $ value;
cards;
A 2
A 3


B 2


B 4


,
run;

proc sort data=have ;
by portfolio;
run;

data want;
set have;
by portfolio;
retain new_value;
if not missing(value) then new_value=value;
run;


portfolio


value


new_value


A


2


2


A


3


3


A


3


B


2


2


B


2


B


4


4


B


4

sam369
Obsidian | Level 7

Hi,

another apporach, i used Mit Have dataset

data have;

input portfolio : $1. value;

cards;

A 2

A 3

B 2

B 4

;

run;

data want;

do until(last.portfolio);

set have;

by portfolio notsorted;

new_val=ifn(value ne .,value,new_val);

output;

end;

run;

Thanks

Sam

sweetgorgor
Calcite | Level 5

Thanks guys! I used Mit's and it worked like a charm! Sam yours also works! Thank you!

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 1434 views
  • 6 likes
  • 3 in conversation