BookmarkSubscribeRSS Feed
HannaZhang
Obsidian | Level 7

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;
2 REPLIES 2

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

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
  • 2 replies
  • 754 views
  • 0 likes
  • 2 in conversation