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.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 410 views
  • 0 likes
  • 2 in conversation