max or large function

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

Guest

Hi,
I have data in column J, associate with column I, data in column M,
assoicated with coumn L, and data in column P, assoicated with coumn O. I
need to find the large or max of J,M,P then it puts the corresponding info
from where the max is from column I, L, O. How would I do this? For ex:

ABC 1 DEF 6 FGH 3

So in this case the formula find the max, which is 6, then gives me DEF
because that is data next to it. Thanks.
 
With
I1: abc
J1: 1
L1: def
M1: 6
O1: fgh
P1: 3

Here are a couple options

Q1: =IF(J1=MAX(J1,M1,P1),I1,IF(M1=MAX(J1,M1,P1),L1,IF(P1=MAX(J1,M1,P1),O1)))

or
R1: =MAX(J1,M1,P1)
Q1: =IF(J1=R1,I1,IF(M1=R1,L1,IF(P1=R1,O1)))

Does that help?
***********
Regards,
Ron

XL2002, WinXP
 
=INDEX(I1:O1,MATCH(MAX(J1:P1),J1:P1,0))

--
---
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)
 
Yep, that did it. Thanks!

Ron Coderre said:
With
I1: abc
J1: 1
L1: def
M1: 6
O1: fgh
P1: 3

Here are a couple options

Q1: =IF(J1=MAX(J1,M1,P1),I1,IF(M1=MAX(J1,M1,P1),L1,IF(P1=MAX(J1,M1,P1),O1)))

or
R1: =MAX(J1,M1,P1)
Q1: =IF(J1=R1,I1,IF(M1=R1,L1,IF(P1=R1,O1)))

Does that help?
***********
Regards,
Ron

XL2002, WinXP
 

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

Rank If? 3
rearranging formula suggestion 2
List if 3
Max; Min & Dates 2
couontif function 4
Excel A CountIF question... I think 2
data splitting 1
Max Length in a row 1

Back
Top