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 finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.