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
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.