Hello
I am using a macro variable as a title value.
Why this code is working while title should be in a quotation marks??
I expect that the code should be title "&mtitle"
But I see that &mtitle is working also without quotation marks
Data aaa;
input name $ Y;
cards;
Joe 20
Yulia 30
;
run;
%LET mtitle = Macros are my game;
proc print data=aaa noobs;
title &mtitle
Run;
As often with SAS, the answer is "for historic reasons".
Tip: For compatibility with previous releases, SAS accepts some text without quotation marks. When writing new programs or updating existing programs, always enclose text in quotation marks.
Quote from http://support.sas.com/documentation/cdl/en/lrdict/64316/HTML/default/viewer.htm#a000220968.htm
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 save with the early bird rate—just $795!
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.