BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
Aljosa
Fluorite | Level 6

Hi all,

I have a column named ID filled out like this (with blancs):

data have;
input ID $;
infile datalines missover;
datalines;
1       
2      
3


4
5       
 
;

I would like to fill out all blancs with the last value populated, so the column I want would look like this:

data want;
input ID $;
infile datalines missover;
datalines;
1       
2
3
3
3
4
5
5
; 

Thank you for your help. Kind regards

1 ACCEPTED SOLUTION

Accepted Solutions
ed_sas_member
Meteorite | Level 14

Hi @Aljosa 

 

Here is one approach to achieve this:

data want;
	set have;
	retain _ID;
	if not missing(ID) then _ID = ID;
	drop ID;
	rename _ID = ID;
run;

Best,

View solution in original post

1 REPLY 1
ed_sas_member
Meteorite | Level 14

Hi @Aljosa 

 

Here is one approach to achieve this:

data want;
	set have;
	retain _ID;
	if not missing(ID) then _ID = ID;
	drop ID;
	rename _ID = ID;
run;

Best,

sas-innovate-white.png

Special offer for SAS Communities members

Save $250 on SAS Innovate and get a free advance copy of the new SAS For Dummies book! Use the code "SASforDummies" to register. Don't miss out, May 6-9, in Orlando, Florida.

 

View the full agenda.

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
  • 472 views
  • 1 like
  • 2 in conversation