Calling all macro idiot savants! 🙂 Thanks!
* Given the following...;
%let a=x;
%let b=y;
%let xy=12;
* Why does this yield '12'?;
%put &&&a&b;
* And this yields '12'?;
%let z=%scan(&a,1)%scan(&b,1);
%put &&&z;
* But this yields '&xy'? How do I make the ampersands apply to both scan results to yield '12'?;
%put &&&%scan(&a,1)%scan(&b,1);
If the last expression generates &xy, apply %unquote:
%put %unquote(... original expression ...);
If the last expression generates &xy, apply %unquote:
%put %unquote(... original expression ...);
Dang, your mama named you right, Astounding - worked like a charm!
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.