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.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.