BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
alepage
Barite | Level 11

When flag is equal to one how to replace missing value by 20230127 ?



data test;
input flag $ date $;
datalines;
0 20250128
0 20250128
0 20250127
0 20250127
0 20250127
0 20250127
0 20250127
1 .
1 .
1 .
1 .
1 .
1 .
1 .
1 .
1 .
1 .
0 20250124
0 20250124
0 20250124
0 20250124
0 20250124
;
run;
1 ACCEPTED SOLUTION

Accepted Solutions
ballardw
Super User

To replace "by last value", which is NOT 20230127 in your example data set:

data want;
  set test;
  length d $ 8;
  retain d;
  if not missing(date) then d=date;
  if flag='1' then date=d;
run;

Retain keeps the value of a variable across data step boundaries. So create a new variable to hold the value with retain when assigned and then use the value as needed.

 

Anything called a "date" that is character is asking for all sorts of difficulty in working with.

View solution in original post

1 REPLY 1
ballardw
Super User

To replace "by last value", which is NOT 20230127 in your example data set:

data want;
  set test;
  length d $ 8;
  retain d;
  if not missing(date) then d=date;
  if flag='1' then date=d;
run;

Retain keeps the value of a variable across data step boundaries. So create a new variable to hold the value with retain when assigned and then use the value as needed.

 

Anything called a "date" that is character is asking for all sorts of difficulty in working with.

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Early bird rate extended! Save $200 when you sign up by March 31.

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

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