• 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.

Lookup for a maximum value in a range

Mano

New Member
Hi,

I need a combination of lookup and max formulae. In a range, I want to find the maximum value of a particular cell. In the table below, each ID is at a different stage. I want a formula that can return the highest stage number for that ID. This is a simple table, while my data is huge. and the IDs are a combination of text, numbers and symbols. "Max Stage Value" column is the RESULT I am LOOKING for...

would any Ninja, kindly help me on this?
Also attaching the spread sheet...

upload_2015-4-21_13-59-17.png













Thanks for trying!
Regards,
 

Attachments

  • Chandoo_help file.xlsx
    11.2 KB · Views: 4
thanks ... Is there an easy way to apply Ctrl+Shift +Enter for the rest of the rows in the range? I have some 10000 rows running?
 
thanks ... Is there an easy way to apply Ctrl+Shift +Enter for the rest of the rows in the range? I have some 10000 rows running?
Yes, you can convert your data with Table, formula will become structured and you'll have to enter it just once.
 
Some more ways..

{=LARGE(($D$4:$D$36=D4)*($C$4:$C$36),1)}
{=MAX(($D$4:$D$36=D4)*$C$4:$C$36)}


non array
=MAX(INDEX(($D$4:$D$36=D4)*$C$4:$C$36,,))
=LARGE(INDEX(($D$4:$D$36=D4)*$C$4:$C$36,,),1)
 
Back
Top