Formula to enter data of one cell based on greatest amount of anot

  • Thread starter Thread starter classroomlaw
  • Start date Start date
C

classroomlaw

Hello! I am looking for a formula that will search an array for the greatest
number, then enter data from the corresponding cell of a different array.
 
Try this:

=INDEX(D:D,MATCH(MAX(A:A),A:A,0))

assuming you are looking in column A for the largest number and want
the corresponding data returned from column D. If you have multiple
maxima, then this will respond to the first of those.

Hope this helps.

Pete
 

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