Return a max value of a column

  • Thread starter Thread starter kennyken
  • Start date Start date
K

kennyken

Another day - another problem !!

I have 2 columns - the 1st with months (text format) and the secon
with numbers . What I want to happen is for excel to look at the 2n
column find the highest number (MAX formula ? ) and then return th
month from column A to which this maximum number which has been foun
corrosponds

Thank
 
Try this:

=OFFSET(B3,MATCH(MAX(B3:B14),B3:B14)-1,-1)

Where in this example, the data (not the Month) is in B3:B14. Chang
it to the range you want changing every B3 and B14 to your max and mi
ranges.
 
And change my MIN() to MAX().

Oopsie!



kennyken < said:
Another day - another problem !!

I have 2 columns - the 1st with months (text format) and the second
with numbers . What I want to happen is for excel to look at the 2nd
column find the highest number (MAX formula ? ) and then return the
month from column A to which this maximum number which has been found
corrosponds

Thanks
 

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