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

Hi, I'm doing conditional datasets output within a SAS macro:

 

I already had work.other dataset.

 

%macro m(w);

data dat1 dat2; 

set other; w = &w.;

if diff le &w. then output dat1; 

else output dat2; run;

%mend;

 

It works when I run without the "%macro"

But, when I call the macro by doing "%m(1);", I got an error saying something wrong with the "set": 

 Statement is not valid or it is used out of proper order.

 

Thoughts? Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

As the first line of your program, use

 

options mprint;

Then run the program again, and see if the LOG is more clear and helps you figure out what you did wrong.

 

If you can't understand what it is telling you, then please copy the log as text (the code AND the error messages) and — DO NOT SKIP THIS STEP — paste it into the window that appears when you click on the {i} icon. 

--
Paige Miller

View solution in original post

3 REPLIES 3
PaigeMiller
Diamond | Level 26

As the first line of your program, use

 

options mprint;

Then run the program again, and see if the LOG is more clear and helps you figure out what you did wrong.

 

If you can't understand what it is telling you, then please copy the log as text (the code AND the error messages) and — DO NOT SKIP THIS STEP — paste it into the window that appears when you click on the {i} icon. 

--
Paige Miller
inyli
Calcite | Level 5

Thanks! I got my problem solved. 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 523 views
  • 1 like
  • 3 in conversation