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

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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