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

I defined 15 macro variables like

%let x1=xxx

%let x2=xxx

%let x3=xxx

....

xxx are some variables in my dataset.

I wonder how I can call some of them together in some procedures such as proc sql and proc reg. For example, I can write

proc reg data=new;

     model ret = &x1 &x2 &x3 &x4;

run;

Can I shorten this code such as model ret = &x1-&x4? I tried this, but not work.

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

If you are already running in a macro then use a DO loop.

%do i=1 %to 15 ; &&x&i %end;

Or just make a new macro variable. You still have to type them out but only one time.

%let xall=&x1 &x2 &x3 &x4 &x5 &x6 .......... ;

Or pull the names from the metadata? Watch out for the SCOPE setting.

proc sql ;

   select distinct cats('&',name) into : xall separated by ' '

   from dictionary.macros

   where name like 'X%' and scope = "GLOBAL"

   ;

quit;

.... var &xall ... ;

View solution in original post

3 REPLIES 3
Peter_C
Rhodochrosite | Level 12

some functions and statements allow variable ranges. The rules are not in the macro language

Tom
Super User Tom
Super User

If you are already running in a macro then use a DO loop.

%do i=1 %to 15 ; &&x&i %end;

Or just make a new macro variable. You still have to type them out but only one time.

%let xall=&x1 &x2 &x3 &x4 &x5 &x6 .......... ;

Or pull the names from the metadata? Watch out for the SCOPE setting.

proc sql ;

   select distinct cats('&',name) into : xall separated by ' '

   from dictionary.macros

   where name like 'X%' and scope = "GLOBAL"

   ;

quit;

.... var &xall ... ;

Ksharp
Super User

If their order is the same within dataset . or you could try this.

model ret = &x1 -- &x4?

Ksharp

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
  • 1525 views
  • 0 likes
  • 4 in conversation