![]() |
Identify the row in which a MAX number in a column resides
I am building a worksheet that collects data from a network on a daily basis.
One of the data categories has 9 columns and 8 rows. I am finding the MAX of each column but need to identify the row in which a MAX number in a column resides at the same time. Probably pretty simple but for some reason I can't put it together. Thanks DobieG Why my display named shows up as BarDoomed I don't know????????? |
Identify the row in which a MAX number in a column resides
One way:
=MATCH(MAX(A:A),A:A, FALSE) In article , BarDoomed wrote: I am building a worksheet that collects data from a network on a daily basis. One of the data categories has 9 columns and 8 rows. I am finding the MAX of each column but need to identify the row in which a MAX number in a column resides at the same time. Probably pretty simple but for some reason I can't put it together. Thanks DobieG Why my display named shows up as BarDoomed I don't know????????? |
Identify the row in which a MAX number in a column resides
To find the address of the max try this
=ADDRESS(MAX(IF(MAX(A1:E8)=A1:E8,ROW(A1:E8))),MAX( IF(MAX(A1:E8)=A1:E8,COLUMN(A1:E8))),4) Array entered. This is for A1 - E8 Mike "BarDoomed" wrote: I am building a worksheet that collects data from a network on a daily basis. One of the data categories has 9 columns and 8 rows. I am finding the MAX of each column but need to identify the row in which a MAX number in a column resides at the same time. Probably pretty simple but for some reason I can't put it together. Thanks DobieG Why my display named shows up as BarDoomed I don't know????????? |
Identify the row in which a MAX number in a column resides
Say in column G we have:
1 4 2 5 7 6 8 3 In A1 enter: =MAX(G:G) gives the max value (in this case 8) In A2 enter: =MATCH(MAX(G:G),G:G,0) gives the row in which the max can be found (in this case 7) -- Gary''s Student - gsnu200790 "BarDoomed" wrote: I am building a worksheet that collects data from a network on a daily basis. One of the data categories has 9 columns and 8 rows. I am finding the MAX of each column but need to identify the row in which a MAX number in a column resides at the same time. Probably pretty simple but for some reason I can't put it together. Thanks DobieG Why my display named shows up as BarDoomed I don't know????????? |
Identify the row in which a MAX number in a column resides
Thanks to all for the responces. I'll get busy and try them. Let you know the
results. Thanks again DobieG "Gary''s Student" wrote: Say in column G we have: 1 4 2 5 7 6 8 3 In A1 enter: =MAX(G:G) gives the max value (in this case 8) In A2 enter: =MATCH(MAX(G:G),G:G,0) gives the row in which the max can be found (in this case 7) -- Gary''s Student - gsnu200790 "BarDoomed" wrote: I am building a worksheet that collects data from a network on a daily basis. One of the data categories has 9 columns and 8 rows. I am finding the MAX of each column but need to identify the row in which a MAX number in a column resides at the same time. Probably pretty simple but for some reason I can't put it together. Thanks DobieG Why my display named shows up as BarDoomed I don't know????????? |
Identify the row in which a MAX number in a column resides
The suggestion did exactly what I ask. I need to modify my question slightly.
I have label the rows in column A 1-10. Find the cell in A that matches the MAX in Col H. Great so far.. DobieG "Gary''s Student" wrote: Say in column G we have: 1 4 2 5 7 6 8 3 In A1 enter: =MAX(G:G) gives the max value (in this case 8) In A2 enter: =MATCH(MAX(G:G),G:G,0) gives the row in which the max can be found (in this case 7) -- Gary''s Student - gsnu200790 "BarDoomed" wrote: I am building a worksheet that collects data from a network on a daily basis. One of the data categories has 9 columns and 8 rows. I am finding the MAX of each column but need to identify the row in which a MAX number in a column resides at the same time. Probably pretty simple but for some reason I can't put it together. Thanks DobieG Why my display named shows up as BarDoomed I don't know????????? |
Identify the row in which a MAX number in a column resides
Mike H wrote...
To find the address of the max try this =ADDRESS(MAX(IF(MAX(A1:E8)=A1:E8,ROW(A1:E8))),MAX (IF(MAX(A1:E8)=A1:E8,COLUMN(A1:E8))),4) .... You've expanded this to 2D, but you failed to take into account the complications involved. For example, if A1:E8 contained 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 1 1 9 1 0 1 1 1 1 1 1 1 1 1 the address of the max would be either C2 (search by row then column) or A6 (search by column then row), but your formula would return C6, which FTHOI I've made the min value. Back to the drawing board! |
Identify the row in which a MAX number in a column resides
Drat, Permission to say ****
"Harlan Grove" wrote: Mike H wrote... To find the address of the max try this =ADDRESS(MAX(IF(MAX(A1:E8)=A1:E8,ROW(A1:E8))),MAX (IF(MAX(A1:E8)=A1:E8,COLUMN(A1:E8))),4) .... You've expanded this to 2D, but you failed to take into account the complications involved. For example, if A1:E8 contained 1 1 1 1 1 1 9 1 1 1 1 1 1 1 1 1 1 1 1 1 9 1 0 1 1 1 1 1 1 1 1 1 the address of the max would be either C2 (search by row then column) or A6 (search by column then row), but your formula would return C6, which FTHOI I've made the min value. Back to the drawing board! |
All times are GMT +1. The time now is 07:23 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com