BookmarkSubscribeRSS Feed
deleted_user
Not applicable
how can I keep the total sale of each emp in summarized format using base SAS only.

E101 CLERK 6005
E102 SALES 10016
E103 CLERK 11017

data is like that

data emp;
input eid $ job $ sale;
cards;
E101 CLERK 2000
E102 SALES 3000
E103 CLERK 4000
E102 SALES 2003
E103 CLERK 3009
E103 CLERK 4008
E102 SALES 2007
E102 SALES 3006
E101 CLERK 4005
;
2 REPLIES 2
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Only necessary to post in one forum - see your other post for a reply.

Scott Barry
SBBWorks, Inc.
Ksharp
Super User
[pre]
data emp;
input eid $ job $ sale;
cards;
E101 CLERK 2000
E102 SALES 3000
E103 CLERK 4000
E102 SALES 2003
E103 CLERK 3009
E103 CLERK 4008
E102 SALES 2007
E102 SALES 3006
E101 CLERK 4005
;
run;
proc means data=emp nway;
class eid job;
var sale;
output out=result(drop=_type_ _freq_) sum= /autoname;
run;
[/pre]



Ksharp

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 2 replies
  • 1291 views
  • 0 likes
  • 3 in conversation