Thanks guys
Question couldn't more vague. "using value of adjacent coulmn as refernce"
1. I assume it is actually adjacent rows you are looking at, not column, from your context. But I could be wrong.
2. Adjacent where? which direction? from top down or from bottom up?
3. Reference how? how many values you take into consideration? straight copy or do something else, such as mean?
Haikuo
Perhaps simplest:
data want;
set have;
if column1 > ' ' then last_column1 = column1;
else column1 = last_column1;
retain last_column1;
if column2 > . then last_column2 = column2;
else column2 = last_column2;
retain last_column2;
drop last_column1 last_column2;
run;
I'm hoping that this "simplest" approach is actually what you are looking for ... each variable can operate independently of the other. So if column2 is missing for the first observation having column1=B, it is OK to use a column2 value from column1=A.
Good luck.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.