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;
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 lock in 2025 pricing—just $495!
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.