BookmarkSubscribeRSS Feed
Kody_devl
Quartz | Level 8

I am an experienced developer in everything but SAS.

 

I have a Dataset --->   "Periods" with a single column and 12 periods:

 

YYYYPP

201605

201604

201603

201602

....

...

 

I want step thru each data format in the Periods table, run an query to pull based on each of the 12 dates, by setting the current period equal to a variable and using the variable as criteria for the pull. 

 

I can do all parts of this except the looping part of the code. 

This is my approach and I can't get it to work.

 

%Macro macro1;

%Do i = 1 %To 12 %By 1;

 

call symputx ('YYYYPP',trim(YYYYPP));

 

RunQuery using &YYYYPP.

 

%end

%Mend macro1; %macro1;

 

Any Help is appreciated in advance.

 

Thank you.

 

1 REPLY 1
LinusH
Tourmaline | Level 20

Typically, this is done via a call execute() in a data _null_ step.

But what kind of pull do you need to do?

Perhaps it could be solved in a simple SQL join?

Data never sleeps

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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
  • 1 reply
  • 1125 views
  • 0 likes
  • 2 in conversation