Ok, I've scoured the search results and haven't quite run across what I'm looking to do
I have a long list of entries: names & numbers. There will be multiple entries for each name in the list, but I only want to return the max value for one that matches.
A 3
B 6
C 8
D 4
A 6
D 1
I need to lookup the first column, and return the max value associated with it. Neither column is sorted, and I will be looking up quite a lot of items in column 'A'. Oh, sorting the results is not really an option.
So, if I lookup 'A' it should return 6.
Thanks
I have a long list of entries: names & numbers. There will be multiple entries for each name in the list, but I only want to return the max value for one that matches.
A 3
B 6
C 8
D 4
A 6
D 1
I need to lookup the first column, and return the max value associated with it. Neither column is sorted, and I will be looking up quite a lot of items in column 'A'. Oh, sorting the results is not really an option.
So, if I lookup 'A' it should return 6.
Thanks