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!
CFC_SAS_Communities_400x225.jpg
It's your turn to help shape SAS Innovate 2027. Share your expertise and inspire the SAS community.
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.