Hello,
%let X=5;
%let Y=X;
Can I recover the value 5 from the macrovariable Y ?
I thought &&Y.. would do the trick but it resolves to "X."
Thanks
OK, I have found the answer : add a third ampersand
%put &&&Y..;
5
I just don't understand the logic behind this.
The macro compiler removes duplicate &, "pairwise". In your case:
&& resolves to &.
&Y resolves to X.
Leaving &X, which resolves to 5.
Ok, that makes more sense now.
Thanks
Can be done, how depends on your application.
Simplest:
%let X=5;
%let Y=&X.;
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!
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.