Minimum Value

C

ceemo

I have a list of names in Column A and in Column B is a number tha
corrospondes to the name. The name may appear more than once.

In column D is a list of th unique names in column E i would like
formula that auto puts the minimum number corrosponding to the name. I
Column F i would like a formula to auto put in the max value tha
corrospondes with that name.

Hope not to confusing, Can anyone help
 
M

Morrigan

Using array enter (Ctrl+Shift+Enter), you can try this:

{=MIN(IF(A$1:A$10=D1,B$1:B$10,""))}
{=MAX(IF(A$1:A$10=D1,B$1:B$10,""))}


Hope this helps.
 
B

Bob Phillips

=MIN(IF(A1:A100=D1,B1:B100))

which is an array formula, so commit with Ctrl-Shift-Enter

I'll leave you to figure the other
 
Top