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
Dive into keynotes, announcements and breakthroughs on demand.
Explore Now →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.