BookmarkSubscribeRSS Feed
gahlot1999
Fluorite | Level 6

Hi Community,

In my dataset, there are multiple missing values. I want those missing values to be filled with last value. If two or more than two missing value then all consecutive missing values should take last value which existed.

For ex.

Source Data:

SourceOutput

1

1

11
11
22
22
 2
 2
 2
44

 

1 REPLY 1
Tom
Super User Tom
Super User

That is want is called Last Observation Carried Forward (LOCF).

For that data a simple retained variable will work.  Note that the retained variable needs to be a NEW variable (not one already in the source dataset) otherwise the retained value is overwritten when the next observation is read.

data have;
  input Source Output;
cards;
1 1
1 1
1 1
2 2
2 2
. 2
. 2
. 2
4 4
;

data want;
  set have;
  want = coalesce(source,want);
  retain want;
run;

Result

Obs    Source    Output    want

 1        1         1        1
 2        1         1        1
 3        1         1        1
 4        2         2        2
 5        2         2        2
 6        .         2        2
 7        .         2        2
 8        .         2        2
 9        4         4        4

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 638 views
  • 0 likes
  • 2 in conversation