Need help with max and if formula

J

jeremiahw23

I need to create a cell entry that displays the name of the salesperson who
sold the most cars in the quarter. Use a combination of the “IF†and "MAX"
functions to do this. Hint: you will need to use these functions function
multiple times in the same formula to do this.
 
B

Biff

Hint: you do not need to "use these functions function multiple times in the
same formula to do this."

Hint: use a combination of INDEX, MATCH and MAX.

Biff
 
D

Dave Peterson

Say you have the names in A1:A100. And the quantity of cars sold in B1:B100.

You could use a formula like:

=index(a1:a100,match(max(b1:b100),b1:b100,0))

to get the first person with the maximum number.

If you could have ties, I think I'd just use Data|Filter|Autofilter on column B
to show the highest number.
 
B

Bob Phillips

wrong group - alt.philosophy.confucianism

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
D

Dave Peterson

Ahhh. I multiposted to that group! <gd&r>

Bob said:
wrong group - alt.philosophy.confucianism

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top