Hi!
I want to filter out/remove the text "declaration" in my table, so that i only have the numeric value.
Can someone help me with this?
Please DO NOT post data as pictures. I'm not hired as your typist.
This will do it:
data want;
set have;
newvar = input(scan(case_concept_name,2),best.);
run;
Like this?
data have;
input case_concept_name $ 1-20;
datalines;
declaration 14447
declaration 14750
declaration 76001
declaration 14559
declaration 85327
;
data want;
set have;
newvar = input(compress(case_concept_name, , 'kd'), 8.);
run;
Please DO NOT post data as pictures. I'm not hired as your typist.
This will do it:
data want;
set have;
newvar = input(scan(case_concept_name,2),best.);
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.