In the following code, I want to execute the where clause in proc print only if the macro variable 'filter' is 'y' otherwise it should not execute.
%let target_table=&datasource; %global prompt; %filter ='y'; proc sort data= "&envPath/data/gb/&datasource" out=sorted nodupkey /*or noduprecs if sorting all vars*/; by &_field /* or list of vars */; run; proc print data= sorted noobs; where ¶meter_1 in ("¶meter_2"); /** need help here to tweak this line to execute only when the macro variable 'filter' is 'y' */ var &_field; run;
%let filter=y;
proc print data= sorted noobs;
%if &filter=y %then %do; where ¶meter_1 in ("¶meter_2"); %end;
var &_field;
run;
Notes: you typed %filter='y'; which is incorrect. You have to use %let as I did, and you should not be enclosing macro variable values in quotes.
This assumes that the rest of the WHERE statement is correct, which I don't know, and you haven't shown that ¶meter_1 or ¶meter_2 have been assigned values.
Why concerned about "executing" the where clause? Does this mean that you may not always define values for the other macro variables and are looking to avoid other problems because of that?
"Not executing" a Where clause is somewhat similar conceptually to "the result of the where is always true" (no filtering is done).
It may be more robust to write such as Where than to invoke the macro processor logic. But no examples of what the other macro variables might look like ...
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
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.