Yes,
You retrieve macrovariables values in a SAS dataset columns but you still use the macrovariables
in your coalesce call instead of the dataset variables.
Hello,
You can declare the macrovariable to ensure that it exists in all contexts.
If it has already be defined, the declaration will not change its value and if
not it will be defined as a space character, which is SAS way to define missing
character variables.
How you declare a macrovariable without setting its value depends on the context.
"%global" gives the macrovariable a global scope and "%local", in a macro, limits
the sccope to the macro body. Redeclaring as global a macrovariable which has already
been defined in the local context results in an error.
1 %let _LEGAL_CD=RMN;
2
3 %global _SOURCE_CD;
4
5 data l;
6 lel=compress(COALESCEC("&_SOURCE_CD.","&_LEGAL_CD."));
7 call symput('lel',lel);
8 run;
NOTE: The data set WORK.L has 1 observations and 1 variables.
NOTE: DATA statement used (Total process time):
real time 4.09 seconds
cpu time 0.00 seconds
9
10 %put &=lel.;
LEL=RMN
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.