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

I have a question regarding the code in lesson 5. There is a macro variable created but when we reference it in the code, why don't we use the double quotation marks to do so ""?

 

As in: 

%let age=13;

proc print data=pg1.class_birthdate;

       where age="&age";

run;

 

Many thanks for your help with understanding this basics!

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

The solution has to do with SAS language, rather than macro language.  In SAS language, when AGE is a numeric variable this would be correct:

where age = 13;

This would be incorrect:

where age = "13";

So getting back to your question, use of quotes would be incorrect because it would generate an incorrect WHERE statement.

View solution in original post

1 REPLY 1
Astounding
PROC Star

The solution has to do with SAS language, rather than macro language.  In SAS language, when AGE is a numeric variable this would be correct:

where age = 13;

This would be incorrect:

where age = "13";

So getting back to your question, use of quotes would be incorrect because it would generate an incorrect WHERE statement.

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
  • 1 reply
  • 690 views
  • 1 like
  • 2 in conversation