BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
cruss1
Calcite | Level 5

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;

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

It looks like a logic error.  Your %IF condition must always be true.  Change "or" to "and".

View solution in original post

3 REPLIES 3
Astounding
PROC Star

It looks like a logic error.  Your %IF condition must always be true.  Change "or" to "and".

nehalsanghvi
Pyrite | Level 9

You need an 'and', not an 'or' in this statement:

 

%if &var ne hand and &var ne eye %then %do;

nehalsanghvi
Pyrite | Level 9

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;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

How to Concatenate Values

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 3 replies
  • 1311 views
  • 0 likes
  • 3 in conversation