Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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????????? |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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????????? |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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????????? |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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????????? |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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????????? |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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????????? |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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! |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
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! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Identify if Cell is Formula or written number | Excel Worksheet Functions | |||
VLOOKUP when a range resides in Column A | Excel Discussion (Misc queries) | |||
XL 2007: Pivot Refresh slow when data resides in another workbook | Excel Discussion (Misc queries) | |||
Identify number of items with characterisitics from two columns | Excel Worksheet Functions | |||
Formula to Identify Column Number | Excel Discussion (Misc queries) |