Looking to find, for example, the 10 largest projects in our system by allocated resource hours. But what happens when there are duplicates/projects with the same number of allocated resource hours?
=LARGE(({total hours}), n)
From the result of that formula, in another cell, I then collect that respective project's name using the ref {project name}. So far I've been using this formula as a workaround:
=INDEX((COLLECT({project name}, {total hours}, [cell with LARGE formula]@row)), 1, 1)
However, when the LARGE formula returns two of the same numbers, the INDEX/COLLECT pulls only the first result.
How can I modify the formula to return the "second" project's name? To that end, is there a way I can put this altogether into one formula so I don't run this risk in the first place?