Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
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 "A.S." wrote: 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. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=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) "A.S." wrote in message ... 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. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yep, that did it. Thanks!
"Ron Coderre" wrote: 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 "A.S." wrote: 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. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to use large function? | Excel Discussion (Misc queries) | |||
Using LARGE Function | Excel Discussion (Misc queries) | |||
Large Function | Excel Worksheet Functions | |||
IF Function too Large | Excel Discussion (Misc queries) | |||
Using LARGE Function | Excel Worksheet Functions |