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.
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;
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;
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.
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!
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.