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?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
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.