• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

using offset in combination with max formula.

Belleke

Well-Known Member
I have this formula
Code:
=MAX(C2:C71)
but i want combine it with an offset formula.
In a cell i have this max formula, but in the cell above i want to add the the name that belongs to the max result, these names are in column B
Thanks
 
I have this formula
Code:
=MAX(C2:C71)
but i want combine it with an offset formula.
In a cell i have this max formula, but in the cell above i want to add the the name that belongs to the max result, these names are in column B
Thanks
The INDEX/MATCH solution is perfectly good still but Excel has moved on considerably over the past 6 years leaving many behind, stuck with obsolete code. Other formulae that work include:
Code:
= INDEX(names, XMATCH(MAX(values), values))

= XLOOKUP(MAX(values), values, names)

= XLOOKUP(MAX(values), values, names, , , {1;-1})

= FILTER(names, values=MAX(values))
One of the main differences in the results they generate is in the treatment of multiple coincident maxima.
 
It would be nice if I could achieve this. the treatment of multiple coincident maxima.
I use O365, but my friend works with O2021
You better open a new thread and enclose with a new file, clearly stated what you have? and, what you want?

Or,
Try to see the below example for the Offset + Maxifs function:

1726102852997.png

Regards
 
Last edited:
It would be nice if I could achieve this. the treatment of multiple coincident maxima.
I use O365, but my friend works with O2021
If it is 2021 that they have, it has both XLOOKUP and FILTER. In other ways it is getting pretty out of date, but it does have the early functions associated with dynamic arrays.
 
Back
Top