minimum value in a column, which row no?

D

Darius

Using
Min (range) I can find the minimum value of a column of data. But how can I
find which Row number it belongs?
 
J

Jacob Skaria

Assuming your data column is A, try the below

=MATCH(MIN(A:A),A:A)


If this post helps click Yes
 
L

Luke M

Returns first row that contains mim value (if two rows have same min value,
will only display first row)

=MATCH(MIN(A:A),A:A)
 
M

Mike H

Hi,

Try this

=MATCH(MIN($A$1:$A$100),$A$1:$A$100,0)

Now if your range starts other than in row 1 add an offset

=MATCH(MIN($A$10:$A$100),$A$10:$A$100,0)+9

The offset iss 1 less than the start row.

Mike
 
L

Luke M

Technically, since he's finding the MIN from same range your matching to, is
there a need to callout for "exact" match?
 

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