Is it possible to replace this statement within PROC SQL:
case when variable in ('1', '2', '3', '4') then ....
with a macro of the form
case when variable in (%macroname(4)) then ...
So the macro would populate the set with the positive integers (in character form) 1 through 4 (or any positive number in place of 4).
Thanks, and sorry if this has been asked before.
While it is very possible in any case, it is easier if you are willing to:
Here is one possible approach using the simplifying assumptions above:
%macro macroname (limit);
%local i;
%do i=1 %to &limit;
"&i"
%end;
%mend macroname;
While it is very possible in any case, it is easier if you are willing to:
Here is one possible approach using the simplifying assumptions above:
%macro macroname (limit);
%local i;
%do i=1 %to &limit;
"&i"
%end;
%mend macroname;
Awesome, Thanks!
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.