Display The Cell Of The Maximum Value.

  • Thread starter Thread starter sokevin
  • Start date Start date
S

sokevin

DISPLAY THE CELL OF THE MAXIMUM VALUE.


Hi again.

I have values in


a2, b2, c2.


i want d2 to display the value of the highest cell out of a2, b2 or c2


e.g

a2=10, b2=15, c2=99 -> d2=99
a2=80, b2=1, c2=1 -> d2=8
 
Actually i did this...

i actually wanted to write the name of the person who got the highest.

=MAX(J2:L2)=J2,"Jane",IF(MAX(J2:L2)=K2,"Bob",IF(MAX(J2:L2)=L2,"Steve","other")

is this an efficient method?

th
 
correction

IF(MAX(J2:L2)=J2,"Jane",IF(MAX(J2:L2)=K2,"Bob",IF(MAX(J2:L2)=L2,"Steve","Other"
 
I might do this instead:

=INDEX({"Jane","Bob","Steve"},MATCH(MAX(J2:L2),J2:L2,FALSE))
 
Hi
lets assume you have stored the names in row one. e.g.
J1=Jane

then use the following formula
=INDEX(J1:L1,MATCH(MAX(J2:L2),J2:L2,0)
 
I wish I would know as much about Excel as you do, Frank !

Thank you so much !

hglamy
 

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

Similar Threads

Average problem 1
Modified ACOS function 2
Split 10 alphanumerics into 3 cells 4
Help to create a macro 2
VLOOKUP problem 3
STILL DESPERATE FOR HELP!!! 8
Segregating Duplicate Transactions 3
Help with Formula 4

Back
Top