i am trying to pull out the alpha in a field. So if the field has an alpha then make that field a 0 if it does not have an alpha in it then keep it
12345678A
45893317Q
23849451H
999999999
888888888
Something like below?
data sample;
input var :$10.;
var_recoded=var;
if anyalpha(var) then var_recoded='0';
datalines;
12345678A
45893317Q
23849451H
999999999
888888888
;
run;
Something like below?
data sample;
input var :$10.;
var_recoded=var;
if anyalpha(var) then var_recoded='0';
datalines;
12345678A
45893317Q
23849451H
999999999
888888888
;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.