Hello,
I want to populate var2 with subsequent record value if the var1 is missing.
data test;
input var1 $ ;
cards;
.
abc
;
run;
data want;
set test;
var2=substr(var1,1,1);
run;Desired output:
var1 var2
. a
abc a
Merge the dataset with itself, but start one observation later:
data want;
merge
test
test (firstobs=2 rename=(var1=var1x))
;
if var1 = ' '
then var2 = substr(var1x,1,1);
else var2 = substr(var1,1,1);
drop var1x;
run;
Merge the dataset with itself, but start one observation later:
data want;
merge
test
test (firstobs=2 rename=(var1=var1x))
;
if var1 = ' '
then var2 = substr(var1x,1,1);
else var2 = substr(var1,1,1);
drop var1x;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
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.
Ready to level-up your skills? Choose your own adventure.