Please Check the attached file. I need to sum up the columns as shown in the attached file
Please Guide me with various possible ways.
Thank you
PROC REPORT.
The easiest way likely would be to use proc sql, though that is just what I prefer to go down columns. As long as you just want the aggregates of each of these groups the below code will work. Granted if you wanted to tack it on to the bottom of the file that the data came in from then you could not rename any of the variables and use union corr to the original dataset.
proc sql;
create table want as
select distinct items, count(unique(dept)) as c_dept, (sum(orders)) as s_orders, (sum(quantity)) as s_quan,
(sum(net_amount)) as s_net
from have
group by items;
quit;
Since you output looks like a report, just use one of SAS's many reporting options.
You could even just use PROC PRINT.
proc print data=have ;
by Items;
id Items ;
var Dept Orders Quantity Net_amount ;
sum Orders Quantity Net_amount;
run;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.