locating the cell that contains the MIN or MAX

J

JR

working horizontally, I have found the MIN and Max of the data on the row
{example: =MIN(C2:BE2)}

I now would like to know what cell in row 2 holds the MIN or MAX.

Any suggestions?
 
J

JR

Thanks!

Both work fine.



Domenic said:
Try...

=SUBSTITUTE(CELL("address",INDEX(C2:BE2,MATCH(MIN(C2:BE2),C2:BE2,0))),"$"
,"")

or

=ADDRESS(ROW(C2:BE2),MATCH(MIN(C2:BE2),C2:BE2,0)+COLUMN(C2)-1,4)
 

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