Hi,
I'm trying to identify the TOP 5 most Requested Items in my Inventory list. I have a formula in place that finds the value of the Top 5 (Formula #1); however, my formula (Formula #2) that finds the corresponding Item Names of the TOP 5 has some limitations. Here's the breakdown:
CURRENT FORMULA
Formula #1 returns the value of TOP 5 most used Items (where n = 1 to 5):
=LARGE([Approved Requests]3:[Approved Requests]84, n)
Formula #2 returns the Item Name of the TOP 5 most used Item:
=INDEX(Item3:Item84, MATCH(LARGE([Approved Requests]3:[Approved Requests]84, n), [Approved Requests]3:[Approved Requests]84))
LIMITATIONS
When two items have the same value, Formula #2 always returns the Item name of the first occurrence (due to MATCH function searching from top to bottom). Is there a workaround for this?
Thanks 😊