Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have succesfully created a MAXA formula which retrieves the highest value
in a column of numbers. I would also like to have the label for that highest number to appear as well. Can this be done? Example: Apples 4 Pears 6 MAXA returns the value 8 but I want the column heading as well. Oranges 8 Plums 3 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=INDEX(A2:A6,MATCH(MAX(B2:B6),B2:B6,0))
where A2:A6 contain the headers -- Regards, Peo Sjoblom Northwest Excel Solutions www.nwexcelsolutions.com (remove ^^ from email address) Portland, Oregon "jhg1226" wrote in message ... I have succesfully created a MAXA formula which retrieves the highest value in a column of numbers. I would also like to have the label for that highest number to appear as well. Can this be done? Example: Apples 4 Pears 6 MAXA returns the value 8 but I want the column heading as well. Oranges 8 Plums 3 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Perhaps something like this is the adjacent column =LOOKUP(MAXA(B1:B10),B1:B10,A1:A10) -- patrickcairns ------------------------------------------------------------------------ patrickcairns's Profile: http://www.excelforum.com/member.php...o&userid=31790 View this thread: http://www.excelforum.com/showthread...hreadid=515615 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hi,
assuming your data starts from A1, =INDIRECT(ADDRESS(MATCH(MAXA(B1:B4),B1:B4,0),COLUM N()-1)) else if it starts from row n =INDIRECT(n+ADDRESS(MATCH(MAXA(B1:B4),B1:B4,0),COL UMN()-1)) "patrickcairns" wrote: Perhaps something like this is the adjacent column =LOOKUP(MAXA(B1:B10),B1:B10,A1:A10) -- patrickcairns ------------------------------------------------------------------------ patrickcairns's Profile: http://www.excelforum.com/member.php...o&userid=31790 View this thread: http://www.excelforum.com/showthread...hreadid=515615 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Positioning Numeric Values Resulting from 6 Column Array Formula | Excel Worksheet Functions | |||
Maintain Relative Reference After Inserting a Column | Excel Worksheet Functions | |||
Sort as "reference column" | Excel Discussion (Misc queries) | |||
COUNT NON-BLANK CELLS WITH REFERENCE TO ANOTHER COLUMN | Excel Worksheet Functions | |||
I need to find the Average from Column A - but Reference Column B | Excel Worksheet Functions |