BookmarkSubscribeRSS Feed
Starsagitarian
Calcite | Level 5

Hello all,

My name is Baiju Joseph and I am a student.

I encountered a problem while doing a project, which I would like to share with you all

for a variable Base in a dataset following was the pattern:

Base
9
6
6
.
.
.
.
.
.
6
6
3
3
.
.
.
.
7
9
3

Now for all the null values I would like to put the preceding non zero value in it till I reach the next non zero value in the variable and so on and so forth, until there are no null values in the variable. for example Observations 4-9 are null, and hence I would like to fill in the value of the preceding non zero observation (ie Obs 3 with value 6) in all the observations till I reach Obs 10, which is a non zero observation.

what can be done to achieve this ??

Kindly reply back with your answers

Thank you all !!!

1 REPLY 1
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Hi,

There are several ways to do this, first one that springs to mind for me is a retain:

data want;

     set have;

     retain lstval;

     if base ne . then lstval=base;

     else base=lstval;

run;

There are other suggestions if you search the forums.

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