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

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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