Finding the Cell Reference for the minimum value of a data list.

M

Matt Yackel

I am trying to figure out how to automatically refernce a
location of a cell (ex. C5)which has been calculated to be
the minimum value of a set of data.

If I can reference the row of this cell absolutely, then I
want to use that value as the beginning data reference
point for both the X and Y data values of an XY scatter
plot.
 
J

J.E. McGimpsey

You can reference it using the MATCH function with INDEX or OFFSET:

I.e., the starting cell might be referenced as:

INDEX(C:C, MATCH(MIN(C:C),C:C, 0))

while the range to plot could be referenced as:

OFFSET(C1,MATCH(MIN(C:C),C:C, 0)-1,0,numrows,numcols)
 

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