BookmarkSubscribeRSS Feed
vraj1
Quartz | Level 8

I am creating the below macro parameter and i get the following error.

%local armn;
%let armn=;

arm has trt1 and trt2

data test;
     set test1;
     output;
          &arm="total";
          &armn=999;
     output;
run;




output; &arm.="total"; &armn.=9999; output;
-
180
ERROR 180-322: Statement is not valid or it is used out of proper order.

 =9999;

 

The error is coming from armn and not sure why. Can anyone help me

2 REPLIES 2
RW9
Diamond | Level 26 RW9
Diamond | Level 26

Well what you post is invalid.  

arm has trt1 and trt2

I not valid SAS code.  And

 

%let armn=;

Will also create invalid code.  If that is not it, then check all the code up to the error, it may be happening well before this block.  Its hard to tell from small snippets of either code or logs. 

Astounding
PROC Star

You need to educate yourself using this program as a learning tool.

 

First, picture what you want the DATA step to look like (with no macro language at all).

 

Second, add this statement and then re-run:

 

options mprint;

 

You will be able to see what the DATA step actually looks like, and compare it to your picture of what you wanted it to look like.

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
  • 2 replies
  • 1062 views
  • 0 likes
  • 3 in conversation