I'm trying to accomplish the following. I have tried using arrays and sorting but nothing appears to work.Any help would be appreciated.
Acct Score1 Score2
9999 45 78
9999 58 65
8888 43 80
8888 43 90
8888 31 70
This is what I would like to end up with
Acct Score1 Score2
9999 58 78
8888 43 90
So basically, keep the highest score for each account.