BookmarkSubscribeRSS Feed
Babloo
Rhodochrosite | Level 12

I wish to know the way to find out the maximum number of sales amount by each salesperson via datastep.

 

I've a data like this

 

Salesid     Sales_amount        Salesperson

001           100                         Dean

001           200                         Dean

002           300                         Tom

002           700                         Tom

003           500                         Jacob

003           400                         Jacob

 

Desired output should be like this

 

Salesid     Sales_amount        Salesperson

001           200                         Dean

002           700                         Tom

003           500                         Jacob

 

Thanks for any help you offer me.

 

3 REPLIES 3
Reeza
Super User

Sort descending and then take the first record for the table.

 

proc sort data=have;
by salesid descending sales_amount;
run;

data want;
set have;
by salesid;
if first.salesid;
run;
FreelanceReinh
Jade | Level 19

Hi @Babloo,

 

Alternatively, you could use a double DOW loop:

data have;
input Salesid $ Sales_amount Salesperson $;
cards;
001 100 Dean
001 200 Dean
002 300 Tom
002 700 Tom
003 500 Jacob
003 400 Jacob
;

data want;
do until(last.salesid);
  set have;
  by salesid;
  maxamt=max(maxamt,sales_amount);
end;
do until(last.salesid);
  set have;
  by salesid;
end;
drop sales_amount;
rename maxamt=Sales_amount;
run;

proc print data=want noobs;
var salesid sales_amount salesperson;
run;
Astounding
PROC Star

Just curious ... why are you insisting on a DATA step solution?  Both PROC SQL and PROC SUMMARY can easily handle this without the need to sort your data.

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

Register Now

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
  • 1449 views
  • 3 likes
  • 4 in conversation