BookmarkSubscribeRSS Feed
xyxu
Quartz | Level 8

I want to run a macro like this

%macro mymacro(str1, str2);
	data want;
		set have;
		if index(mystring, "&str1") > 0 or index(mystring, "&str2") > 0;
	run;
%mend

The problem is that my input strings include cases like " FL", ",C A", ", DE", "G.A."

How can I safely pass these strings into the macro?

3 REPLIES 3
PeterClemmensen
Tourmaline | Level 20

Use an appropriate macro quoting funciton. See the blog post Passing comma-delimited values into SAS macros and macro functions by @LeonidBatkhan for a thorough discussion. 

Quentin
Super User

Probably the easiest way is to include the quote marks in the values you pass.  They will then protect the space and the comma.  e.g. :

 

%macro mymacro(str1, str2);
	data want;
		set have;
		if index(mystring, &str1) > 0 or index(mystring, &str2) > 0;
	run;
%mend ;

options mprint ; 
%mymacro(" FL",",C A")

But certainly doing it via macro quoting will work.  And @LeonidBatkhan's blog is a great place to start.

The Boston Area SAS Users Group (BASUG) is hosting our in person SAS Blowout on Oct 18!
This full-day event in Cambridge, Mass features four presenters from SAS, presenting on a range of SAS 9 programming topics. Pre-registration by Oct 15 is required.
Full details and registration info at https://www.basug.org/events.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

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

View all other training opportunities.

Discussion stats
  • 3 replies
  • 678 views
  • 4 likes
  • 4 in conversation