BookmarkSubscribeRSS Feed
Smile_
Calcite | Level 5

I'm studing how to use Macro in sas and learn coding from other people.

I have a question about the do loop for this code I wonder why they need to put loop j=1 to ... because in loop they didn't refer to j .

Anyone could help please?

 

 

%do i = 1 %to %sysfunc(countw(&Component_List,'/'));
   if pay_cd in ( %do j=1 %to %sysfunc(countw(&&&&&&Component_List_Name_&i,'/'));
           %sysfunc(catq('1a',%sysfunc(translate(&&&&&&Component_List_Name_&i,%str(,),%str( )))))
                  %end; )
then Component_1 = "%scan(&Component_List,&i,'/')";
%end;
 

 

2 REPLIES 2
Tom
Super User Tom
Super User

You should probably study a different program.

 

If you can post an example of the values of the miriad macro variables that this program is referencing then perhaps we can make sense of it.

 

I suspect that originally the program looped over the values and then they changed the logic to try to take advantage of the CATQ() function and forgot to remove the loop.  Since generating duplicate lists of codes like

if pay_cd in ( 'A' 'B' 'C' 'A' 'B' 'C' 'A' 'B' 'C') then ...

instead of 

if pay_cd in ( 'A' 'B' 'C' ) then ...

wouldn't actually make the program fail or even change the result they probably never noticed the mistake.

 

 

 

Smile_
Calcite | Level 5

Dear Tom ,Thank you so much.  very understand 🙂

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

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
  • 1198 views
  • 1 like
  • 2 in conversation