I have created a list of macro variables in a PROC SQL without error. When I create the macro variables I have a list of parameters (costval) that I have created previosuly in the job. I cannot hard code these values because they may change and I want the flexibility to pick up any new ones that are added. I am having trouble getting the syntax right to get these values to resolve in a DATA step further down the line. How do I get these costvals to resolve? Any help would be appreciated.
proc sql noprint ;
select %do i = 1 %to &costvars ;
sum(CC_&&costval&i),
%end ;
count(*), sum(TotalGTM)
into
%do i = 1 %to &costvars ;
:ccE&&costval&i,
%end ;
:ccETotal, :ccEmptyGTM
from work.emptycc ;
quit ;
You might find it easier if you change the names of the macro variables that SQL creates.
You have:
:ccE&&costval&i,
Try:
:ccE_&i,
You would still have &costval1 - &costvalN that tells you how the numbers relate to the original field names.
Good luck.
Hard to tell what may be going on. Have you tried using options mprint or adding a %put _user_; statement after the proc sql to see what your code is resolving to?
Are you getting any errors? If so what are they?
April 27 – 30 | Gaylord Texan | Grapevine, Texas
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!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.
Ready to level-up your skills? Choose your own adventure.