Hi,
Is it possible to conditionally skip a section of code?
For example, I have a global macro called VolAdj, which can hold the values Y or N. My code looks like:
SAS DATA Step....
SAS DATA Step....
%macro Zero;
a few simple calculations;
%mend;
%Zero;
SAS DATA Step...
SAS DATA Step...
I'd like to write something like:
if &VolAdj = "Y" then run the macro Zero and the data steps after it;
else if &VolAdj = "N" then skip the macro Zero and run the data steps after it;
Thank you for any help you can provide!
One way to avoid creating a macro just to use %IF/%THEN is to use CALL EXECUTE:
data _null_;
if "&VolAdj" = "Y" %then call execute('%zero');
run;
If you are putting this sort of code into a DATA step that actually processes data, be careful. You want to make sure this comparison occurs only once, not once per observation. There are secondary complications as wlel, but your application seems to be this simple.
Good luck.
Then I guess you need to wrap them up all in macro, then use conditional macro statments to route your code base on conditions, something like %if %then should help.
Haikuo
One way to avoid creating a macro just to use %IF/%THEN is to use CALL EXECUTE:
data _null_;
if "&VolAdj" = "Y" %then call execute('%zero');
run;
If you are putting this sort of code into a DATA step that actually processes data, be careful. You want to make sure this comparison occurs only once, not once per observation. There are secondary complications as wlel, but your application seems to be this simple.
Good luck.
Thank you both!
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.