I want to find all the records that have values starting with 44 in the variable X (a numeric variable)
I tried the below but it doesn't work. Thanks
data have;
set first;
where X=:'44';
run;
Try
where cats(X) =: "44";
PG
HI Apple,
Try this ...............
DATA want ;
x=449;
if substr(cats(x),1,2)='44' then want=1;
run;
Cheers,
Karthik
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.