I am using a %if statement inside a macro to execute code when &var does NOT match eye or hand. But the code inside the %if is still submitting when it gets to var = eye. How can I write this so that body = &var + 1; does NOT happen when var equals hand or eye?
data x;
set y;
%macro look (var);
%if &var ne hand or &var ne eye %then %do;
body = &var + 1;
%end;
%mend look;
%look (hand);
%look (eye);
%look (arm);
run;
It looks like a logic error. Your %IF condition must always be true. Change "or" to "and".
It looks like a logic error. Your %IF condition must always be true. Change "or" to "and".
You need an 'and', not an 'or' in this statement:
%if &var ne hand and &var ne eye %then %do;
The way you have it currently written with an 'or', any one of the two conditions needs to be true for the statement inside to execute. When you pass in hand, &var ne eye is true, so it executes. When you pass in eye, &var ne hand is true so it executes. What you intend to say is execute code only if both conditions are true - not hand AND not eye.
%if &var ne hand and &var ne eye %then %do;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.