BookmarkSubscribeRSS Feed
Babloo
Barite | Level 11

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 &parameter_1 in ("&parameter_2"); /** need help here to tweak this line to execute only when the macro variable 'filter' is 'y' */
	var &_field;
run;
2 REPLIES 2
PaigeMiller
Diamond | Level 26
%let filter=y;

proc print data= sorted noobs;
	%if &filter=y %then %do; where &parameter_1 in ("&parameter_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 &parameter_1 or &parameter_2 have been assigned values.

--
Paige Miller
ballardw
Super User

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 ...

SAS INNOVATE 2024

Innovate_SAS_Blue.png

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. 

Register now!

How to Concatenate Values

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 147 views
  • 2 likes
  • 3 in conversation