BookmarkSubscribeRSS Feed
subhasr
Calcite | Level 5

Hi, 

I am new to SAS community. I have a small problem with do loops while using macro. I want to get Bill_1, bill_2 , bill_3 which is assigned as i (bill_&i). I also want stat_1, stat_2 and stat_3 which is assigned as j (stat_&j).

Now I write a do loop for %do i= 1 %to 3;
                                       %do j= 1 %to 3;

So definitely its getting looped 9 times. But I want it to produce just 3 combinatuions like this.  Bill_1,Stat_1

                                                                                                                                                    Bill_2,Stat_2

                                                                                                                                                    Bill_3,Stat_3.

If I could get some help please.

3 REPLIES 3
Haikuo
Onyx | Level 15

Can you assign them using the same macro variable, say i and do one loop?

 

bill_&i, stat_&i

 

 %do i= 1 %to 3

subhasr
Calcite | Level 5

 

Yipeeeeeee it worked. Thanks a lot Haikuo. Man Very Happy

kannand
Lapis Lazuli | Level 10

Please accept @Haikuo's solution so you give "he or she" the credit and remove this problem from the pending queue. Of course when time permits. 

 

By the way, welcome to the forum...!!!

Kannan Deivasigamani

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
  • 1424 views
  • 0 likes
  • 3 in conversation