Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
Hi,
Is there a way to find the maximum value of a column in Excel and then list it along with the corresponding values in adjacent cells in the row? I know it can be done with simply sorting the data but I was hoping to do it without rearranging the data. Thanks, feman007 |
#2
![]() |
|||
|
|||
![]()
For Max: =MAX(B:B)
For cell next to it: =INDEX(A:A,MATCH(MAX(B:B),B:B)) In both cases B:B (etc) can be replaced by range such as B3:B233 best wishes -- Bernard V Liengme www.stfx.ca/people/bliengme remove caps from email "feman007" wrote in message ... Hi, Is there a way to find the maximum value of a column in Excel and then list it along with the corresponding values in adjacent cells in the row? I know it can be done with simply sorting the data but I was hoping to do it without rearranging the data. Thanks, feman007 |
#3
![]() |
|||
|
|||
![]()
"Bernard Liengme" wrote...
.... For cell next to it: =INDEX(A:A,MATCH(MAX(B:B),B:B)) .... Requires that col B be sorted in ascending order. If that doesn't apply, use =INDEX(A:A,MATCH(MAX(B:B),B:B,0)) |
#4
![]() |
|||
|
|||
![]()
http://tinyurl.com/4rox2
which also picks up the ties of the max value. feman007 wrote: Hi, Is there a way to find the maximum value of a column in Excel and then list it along with the corresponding values in adjacent cells in the row? I know it can be done with simply sorting the data but I was hoping to do it without rearranging the data. Thanks, feman007 |
#5
![]() |
|||
|
|||
![]()
Thanks to everyone for all the help. I got it to work.
"Aladin Akyurek" wrote: http://tinyurl.com/4rox2 which also picks up the ties of the max value. feman007 wrote: Hi, Is there a way to find the maximum value of a column in Excel and then list it along with the corresponding values in adjacent cells in the row? I know it can be done with simply sorting the data but I was hoping to do it without rearranging the data. Thanks, feman007 |
#6
![]() |
|||
|
|||
![]()
Thanks to everyone for all the help. I got it to work.
"Aladin Akyurek" wrote: http://tinyurl.com/4rox2 which also picks up the ties of the max value. feman007 wrote: Hi, Is there a way to find the maximum value of a column in Excel and then list it along with the corresponding values in adjacent cells in the row? I know it can be done with simply sorting the data but I was hoping to do it without rearranging the data. Thanks, feman007 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Finding Unique Values in Column | Excel Discussion (Misc queries) | |||
Finding last entry in column | Excel Worksheet Functions | |||
Finding intersection of row and column (both variable) in table | Excel Worksheet Functions | |||
Finding the max of a column where values less than a specified number | Excel Worksheet Functions | |||
Finding duplicate nuumbers in a column | Excel Worksheet Functions |