BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
lc7033907
Obsidian | Level 7

Thank you, Tom. Now I am much clearer about these macro functions. Really appreciate. 

ballardw
Super User

Why your attempt doesn't work:

When you have this

proc print data=admit;
   where name  in ("&name");
run;

And name is

Murry. W, Almers. C

Then the Proc print resolves to

proc print data=admit;
   where name  in ("Murry. W, Almers. C");
run;

Which is not the same as the code that executes because each separate value in the IN comparison needs to be separately quoted.

lc7033907
Obsidian | Level 7

Yes, you are right, ballardw. Actually I realized this point, but I don't know how to correct it, I mean how to use a macro to solve this problem. Now I got ideas from this post, thanks.

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!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 17 replies
  • 1882 views
  • 7 likes
  • 5 in conversation