Use Value In An Adjacent Cell

  • Thread starter Thread starter Mark Hatfield
  • Start date Start date
M

Mark Hatfield

I would like to find the maximum number in a column of numbers and then use
the value in the cell one cell above and one cell to the right of the
maximum number. Can someone assist me with the formula?

The Data:

B C D
10/25/2004 57,636 19.039
11/03/2004 58,015 19.627
11/12/2004 58,431 17.774


This formula will return 58,431 (the maximum number in the range)

=MAX($C$6:$C$55)

Once I find that number I need the value one cell above and one cell to the
right (19.627 in this case).

Thanks,

Mark
 
Hi
one way:
=INDEX($D$6:$D$55,MATCH(MAX($C$6:$C$55),$C$6:$C$55,0)-1)
 

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