V1 V2 V3
A 1 5 9
B 2 2 6
C 7 8 4
Hi Experts,
I need support to find the largest value (whole range) in this table and then return it's location. For example, largest value is 9 and the result should also return A V3.
Thank you
you can do this with an Array Formula (so you have to enter it with Ctrl+Shift+Enter:
IF(B2:D4=MAX(B2:D4),ROW(B2:D4),0)
- it will return theROW
in which the value equals theMAX
in the rangeMAX
of that (we need one value to work with for the offset)COLUMN
The addresses are assuming that your example was at the top of your sheet!
EDIT: WITH THE RANKING - uses
LARGE()
function to get the nth largest, rather than MAXThe following is a mish-mash of something I did a while a back. It's not very elegant but it should work:
Say we have:
.
Then:
EDIT#1
This version returns the concatenation of the column header and the row ID: