Getting the MIN and MAX from a column wrt another column

S

sando

Hi,

I have three columns. One column has names of people, one has a alphabet
(e.g. A, B, C, D and E) and the third has a rating (e.g. 1.0 to 5.0) I would
like to get the minimum and maximum of the ratings corresponding to A, then
B, C, D and E.

Can someone help me do this? I can do it using Pivot table, but I dont want
to use it in this case.

Thanks,
Sando
 
B

Biff

Hi!

Entered as an array with the key combo of CTRL,SHIFT,ENTER:

=MAX(IF(B1:B8="A",C1:C8))

=MIN(IF(B1:B8="A",C1:C8))

Biff
 

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