Is there a way to determine which cell the function =min() used?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Say I have 2 columns of information, I want to find the min value of column1.
Then I would like to use the information in column 2 that is in the same row
where the min value was found.
 
One way ..
Assume the 2 cols are A & B, with no ties in the minimum values in col A
Try in say, C1: =INDEX(B:B,MATCH(MIN(A:A),A:A,0))
to retrieve the value in col B corresponding to the min value in col A
 
MIN from MAX - Love it :-)

--
Regards
Ken....................... Microsoft MVP - Excel
Sys Spec - Win XP Pro / XL 97/00/02/03

------------------------------­------------------------------­----------------
It's easier to beg forgiveness than ask permission :-)
------------------------------­------------------------------­----------------
 
Thanks for the help! Min for Max, ha!

Max said:
One way ..
Assume the 2 cols are A & B, with no ties in the minimum values in col A
Try in say, C1: =INDEX(B:B,MATCH(MIN(A:A),A:A,0))
to retrieve the value in col B corresponding to the min value in col A
 

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

Back
Top