BookmarkSubscribeRSS Feed
jmkroll
Calcite | Level 5
I have been pulling my hair out with this. I want to create a macro that submits some SQL code. The SQL code contains a WHERE clause using the LIKE operator. I need to include a macro variable in the LIKE string. Here is what it looks like.

%Macro MyMac(name);
Proc SQL;
Select *
From somefile
WHERE somefield LIKE "%&name%";
%Mend;

%MyMac(jeff);

The resulting SQL code should look like

Proc SQL
Select *
From somefile
WHERE somefield LIKE "%jeff%";

Those two percent signs are killing me. Can anyone come up with a series of macro functions that would result in the string Im looking for? Your help is appreciated.

Jeff
2 REPLIES 2
Olivier
Pyrite | Level 9
What you need is a QUOTING function. Quoting is the art of hiding characters, preventing the macro processor to do them wrong. In that case, %NRBQUOTE seems to work out fine.
[pre]
WHERE name LIKE "%NRBQUOTE(%)&name%NRBQUOTE(%)" ;
[/pre]
Regards.
Olivier
jmkroll
Calcite | Level 5
Thanks Olivier. I had a feeling it would be something as simple as that. It worked perfectly.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1109 views
  • 0 likes
  • 2 in conversation