Find Row in a named range

R

Raul

I have a named range that contains several rows and columns of data. I'm
using the following formula to determine the minimum value in a range that
consists of all but the last two rows in the second column.

=MIN(OFFSET(DataRange,0,1,COUNT(INDEX(DataRange,0,1,1))-2,1))

This formula gives me the result I want. But, now I need to know how to find
the value in row three that corresponds to value from the above formula?
I'm assuming I need to find the row and then get the value based on the row
and column, but my attempts have not been successful.

Thanks,
Raul
 
R

Raul

Thanks for the tip. I came up with following based on your input:

=INDEX(DataRange,MATCH(MIN(OFFSET(DataRange,0,1,COUNT(INDEX(DataRange,0,1,1))-2,1)),OFFSET(DataRange,0,1,COUNT(INDEX(DataRange,0,1,1))-2,1),0),3,1)

Thanks again,
Raul
 

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