I'm trying to create a list of statistics for all months within my data set. I have everything by month so just need to assign the values to be manipulated further on. The code I'm trying to use is below, but it's not working as it says there is no corresponding %to statement for the initial %do.
%do stat='sum_of_x','sum_of_y','count_of_x','count_of_y','total_z';
%do y=13 %to 18;
%do m=1 %to 12;
%let mym = %sysfunc(putn(&m,z2.));
%if &y&mym<=1802 %then %do;
,sum(&stat) as &stat_&y&mym
%end;
%end;
%end;
%end;
If you want to perform a macro language %DO loop over a list of values, you have to program it yourself. Here's some help:
The %do construct does not have the functionality to do lists of values, that is a datastep do loop only.
Why are you doing it this way, Base SAS is the programming language and has the full functionality, macro is not a replacement for this.
If you want sums by month, then you would use proc means/summary, by month, then if you need a transposed output for a report (as working with transposed data is more complicated than with normalised data) you can use proc transpose to transpose the data at that point. Zero need for macro, smaller easier to maintain code, and faster as it is using the actual programming language.
if you provide some test data I can show you the code.
If you want to perform a macro language %DO loop over a list of values, you have to program it yourself. Here's some help:
Consider using PROC MEANS or SUMMARY instead, they're typically a lot more flexible in how you can calculate summary statistics.
@bethsmith wrote:
I'm trying to create a list of statistics for all months within my data set. I have everything by month so just need to assign the values to be manipulated further on. The code I'm trying to use is below, but it's not working as it says there is no corresponding %to statement for the initial %do.
%do stat='sum_of_x','sum_of_y','count_of_x','count_of_y','total_z';
%do y=13 %to 18;
%do m=1 %to 12;
%let mym = %sysfunc(putn(&m,z2.));
%if &y&mym<=1802 %then %do;
,sum(&stat) as &stat_&y&mym
%end;
%end;
%end;
%end;
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!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.