Hi guys,
I want to fill Missing values with the next observation or previous observation under certain conditions.
The conditions as follows
The missing data at the first half is replaced by the previous adjacent data, and the missing data at the second half is replaced by the next adjacent data. If there is residual data in the middle, the next adjacent data is used instead.
Thanks a lot.
Data have;
input id var1;
datalines;
1 54
1 60
1 62
1 .
1 .
1 .
2 100
2 100
3 .
3 .
3 .
3 .
3 72
;
Run;
Data want;
input id var1;
datalines;
1 54
1 60
1 62
1 62
1 100
1 100
2 100
2 100
3 100
3 100
3 72
3 72
3 72
;
Run;
How bog is your data set?
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.