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!
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.
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.
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.