Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Hello,
I have a range on which I am looking for the max value: E51=MAX($B$54:$L$54) Now, rather than extracting the cell's content, I'd like to extract the cell's address, so that I can then display the content of that column's header in range B2:L2. Example: If the MAX function in E51 above computes the content of cell H54, rather than displaying the content of H54 I would like to display the content of H2. Hopefully I'm making sense... Thanks in advance for any help you can provide! Alain |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=INDEX($B$2:$L$2,MATCH(MAX($B$54:$L$54),$B$54:$L$5 4,FALSE)) In article , aduroche wrote: Hello, I have a range on which I am looking for the max value: E51=MAX($B$54:$L$54) Now, rather than extracting the cell's content, I'd like to extract the cell's address, so that I can then display the content of that column's header in range B2:L2. Example: If the MAX function in E51 above computes the content of cell H54, rather than displaying the content of H54 I would like to display the content of H2. Hopefully I'm making sense... Thanks in advance for any help you can provide! Alain |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
JE,
That works for me, thank you very much. I'm surprised there's no simpler function to give a cell's address; from there, I would have used the OFFSET function. Oh well, love to learn something everyday! Thanks again, Alain "JE McGimpsey" wrote: One way: =INDEX($B$2:$L$2,MATCH(MAX($B$54:$L$54),$B$54:$L$5 4,FALSE)) In article , aduroche wrote: Hello, I have a range on which I am looking for the max value: E51=MAX($B$54:$L$54) Now, rather than extracting the cell's content, I'd like to extract the cell's address, so that I can then display the content of that column's header in range B2:L2. Example: If the MAX function in E51 above computes the content of cell H54, rather than displaying the content of H54 I would like to display the content of H2. Hopefully I'm making sense... Thanks in advance for any help you can provide! Alain |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I can't think of how that would be any simpler. In Outline, what I
suggested requires 3 functions (INDEX,MATCH,MAX). Your model would, I would think, also require at least 3 (OFFSET,ADDRESS,MAX), unless you're thinking there should be a special ADDRESSOFMAX() function. Also using INDEX instead of OFFSET is more efficient in that INDEX is not volatile (for later versions of XL) while OFFSET is. In article , aduroche wrote: I'm surprised there's no simpler function to give a cell's address; from there, I would have used the OFFSET function. Oh well, love to learn something everyday! Thanks again, Alain "JE McGimpsey" wrote: One way: =INDEX($B$2:$L$2,MATCH(MAX($B$54:$L$54),$B$54:$L$5 4,FALSE)) |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Printing cell's content larger than cell width | New Users to Excel | |||
How make hyperlink refer to cell content rather than cell address. | Excel Discussion (Misc queries) | |||
Automatically filling in cells based on another cell's content | Excel Worksheet Functions | |||
Changing named range reference depending on a cell's content | Excel Discussion (Misc queries) | |||
How do you copy a cell's content verses it's formula? | Excel Discussion (Misc queries) |