Proc sql;
select name into :sum_count SEPARATED by " ," from x13
where upper(name) like 'COUNT%' ;
quit;
%put &sum_count;
my output is :
Count_121117 ,Count_121817 ,Count_122617 ,Count_010218 ,Count_010818 ,Count_011518 ,Count_012218 ,Count_012918
But I want my output : Sum(Count_121117) , Sum(Count_121817) , Sum(Count_122617 ), Sum(Count_010218 ), Sum(Count_010818)Sum(Count_011518) , Sum(Count_012218 ), Sum(Count_012918)
try something like this
Proc sql noprint;
select cats("sum(", name,")") into :sum_count SEPARATED by " , " from x13
where upper(name) like 'COUNT%' ;
quit;
try something like this
Proc sql noprint;
select cats("sum(", name,")") into :sum_count SEPARATED by " , " from x13
where upper(name) like 'COUNT%' ;
quit;
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 save with the early bird rate—just $795!
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.