I want to use the where function with like operators for data sub setting but the activity can contain anything like poultry processing, poultry slaughter, Meat processing, meat slaughter and so on, now i have to resolve the macro to poultry masking only the % sign? Example of the code is given below, which function is best in this situation?
%let activity= Poultry;
PROC SQL outobs= 500 NOPRINT;
create table work.testdata as
select var1, var2, activities
from retailstore
where activities like "%&activity%"
;
QUIT;
the activity variable contains the following value
Poultry processing, Meat Processing, Poultry slaughter
Poultry slaughter, Meat Processing
Ready to eat Poultry, Poultry slaughter
Meat Processing, Import
Meat slaughter, Import, Meat Processing
Ready to eat meat, Meat Processing
Import
give example of your data specially the activity col
activity
Poultry processing, Meat Processing, Poultry slaughter
Poultry slaughter, Meat Processing
Ready to eat Poultry, Poultry slaughter
Meat Processing, Import
Meat slaughter, Import, Meat Processing
Ready to eat meat, Meat Processing
Import
This may occur in any combination, out of which i want to extract either poultry, meat, export, import to find out how many poultry centers (processing, slaughter, ready to eat), how many meat centers, and import, expor
An alternative way is symget()
where find(activities,symget('activity') )
Agree with KSharp there. A further alternative is to put your items in a table and subquery that. E.g:
data activities;
activity="Poultry Processing"; output;
activity="Meat processing"; output;
...
run;
proc sql;
select *
from HAVE
where ACTIVITY in (select distinct ACTIVITY from ACTIVITIES);
quit;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register 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.