BookmarkSubscribeRSS Feed
Dipu
Calcite | Level 5

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

3 REPLIES 3
LinusH
Tourmaline | Level 20

PROC REPORT.

Data never sleeps
overmar
Obsidian | Level 7

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;

Tom
Super User Tom
Super User

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: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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
  • 3 replies
  • 758 views
  • 6 likes
  • 4 in conversation