ExcelColonist
New Member
- Joined
- Feb 1, 2021
- Messages
- 8
- Office Version
- 365
- 2019
- Platform
- Windows
I am sorting data from a large table (called Games) for the top ten fastest running times, I will be continually adding new data to the table and the top ten times may change moving forward. I have attached a picture to be used as a visual, which also includes the function I am using.
The first column, is the table row the information is taken from
I eventually plan on adding an INDEX function to this equation so I can match the name to the time.
As you can see in the photo, there is a tie for first place at 9 minutes and 41 seconds, but both are sourced from the same row (row 119 in the table Games). This is the equation I am using for this.
Both 9.41 times should be coming from their own unique rows in the table, does anyone have any ideas how I can accomplish this?
The first column, is the table row the information is taken from
Excel Formula:
=MATCH(J2,Games[Time],0)
As you can see in the photo, there is a tie for first place at 9 minutes and 41 seconds, but both are sourced from the same row (row 119 in the table Games). This is the equation I am using for this.
Excel Formula:
=INDEX(SORT(Games[Time],1,1),SEQUENCE(10),1)
Both 9.41 times should be coming from their own unique rows in the table, does anyone have any ideas how I can accomplish this?