Use the Rank function in column c to Rank each item. In column d, use the vlookup or index/match to do a table lookup of looking for Rank 1, Rank 2...etc. Answer from smokinjoe72 on reddit.com
🌐
Sage Intelligence
sageintelligence.com › home › blog › tips & tricks › excel tips & tricks › using an array formula to display top five values
Using an Array Formula to Display Top Five Values | Sage Intelligence
February 13, 2014 - 2. In the formula bar, enter the following formula: =LARGE(C3:C17,{1;2;3;4;5} ... To display the bottom five balances, replace the function; LARGE with SMALL in the formula in step 2. To display the top ten values add ...
🌐
Ablebits
ablebits.com › ablebits blog › excel › find & replace › excel formula to find top 3, 5, 10 values in column or row
Excel formula to find top 3, 5, 10 values in column or row
March 13, 2023 - SORT({"Aiden",5.51;"Brian",5.57;"Nick",5.57}, 2, -1) As you can see above, the FILTER function outputs the items in the same order they appear in the source range. To sort the results, we place the FILTER formula inside the SORT function and set the sort_order argument to either -1 (descending) or 1 (ascending). That's how to find top values in Excel.
🌐
ExcelDemy
exceldemy.com › home › excel functions › how to find top 5 values and names in excel (14 useful ways)
How to Find Top 5 Values and Names in Excel (14 Useful Ways) - ExcelDemy
June 24, 2024 - This formula is also only applicable in Excel for Microsoft 365 as the CHOOSEROWS function isn’t available in other versions. ... Insert the following formula in Cell F7. ... Press the Enter key. The top 5 values and names will appear in the range F7:G11. Note: Combine the CHOOSECOLS function if you want to return specific columns. ... Press Enter. ... We require an additional column Unique Identifier (column D) for this method.
🌐
Statology
statology.org › home › excel: how to find top 5 values and names
Excel: How to Find Top 5 Values and Names
June 20, 2023 - This tutorial explains how to find the top 5 values and names in Excel, including a complete example.
🌐
Wyzant
wyzant.com › resources › ask an expert
How do you get top 5 values in Excel? | Wyzant Ask An Expert
March 14, 2019 - For example, if your values are ... the largest value and copy down 4 more rows for the next 4. =INDEX($B$2:$B$28,MATCH(1,INDEX(($A$2:$A$28=LARGE($A$2:$A$28,ROWS(D$1:D1)))*(COUNTIF(D$1:D1,$B$2:$B$28)=0),),0)) ... Get a free answer to a quick problem....
🌐
YouTube
youtube.com › startup akademia
How to find the Top 5 values in Excel with one formula (LARGE formula) - YouTube
I will explain in this video what is and how to find the top 5 values in Excel.This movie is a part of my online course Essential Excel for Business Analysts...
Published   May 14, 2022
Views   46K
Find elsewhere
🌐
YouTube
youtube.com › shorts › yW1pVkuGUg0
Excel - How to Sum Top Five Numbers In Excel with a Formula #shorts #excelformula - Episode S0018 - YouTube
April 2, 2023 - Microsoft Excel Tutorial: How to sum the top 5 values in excel?Welcome to another Excel tutorial! In this #shorts video, we'll be learning how to sum the top...
🌐
Spreadsheetsmadeeasy
spreadsheetsmadeeasy.com › how-to-sum-the-top-5-values-in-excel
How to Sum the Top 5 Values in Excel | Spreadsheets Made Easy
July 28, 2017 - We can do this by using the LARGE() function in Excel. If you’re not familiar with the LARGE() function, click here to learn more. Normally, you would use the LARGE() function to return a single value, but today, we need it to return multiple values. To do this, select 5 cells and then in ...
🌐
Reddit
reddit.com › r/excel › return top n values using index function
r/excel on Reddit: Return Top N Values using Index Function
August 26, 2022 -

Hi all, sometime back I had seen a YT video that had a neat solution to returning top N rows using the Index function, however, I am not able to find it again. I don't know if I remember it wrong or if that it is actually possible but it's eating my brain up so I thought I'd ask it here.

So the problem is this. Let's say I have data in A1:B10 and I want to return the top 5 values using the Index function.

I can use this formula - =INDEX(A12#,{1;2;3;4;5},0)

But is there a way so I can reference in the formula 1 to 5 directly instead of using semi-colons?

Edit: I am not looking to get top 5 highest values or lowest values. I am just looking to get the top 5 rows in an array. The goals is to for example, wrap it around a filter function that outputs an array to only display Top N results.

Secondly, the solution I remember seeing had an operator that replaced {1;2;3;4;5} in the formula with something shorter and dynamic, so that is specifically what I was aiming for. It is not a problem I am looking to solve currently, just curious as it was something that I hadn't seen before.

🌐
ExtendOffice
extendoffice.com › documents › excel › how to find the lowest and highest 5 values in a list in excel?
How to find the lowest and highest 5 values in a list in Excel?
Find the lowest and highest 5 values in Excel with ease. Learn how to quickly identify top and bottom values for better data analysis.
🌐
Microsoft Learn
learn.microsoft.com › en-us › answers › questions › 5130552 › excel-top5-bot5-formula
Excel - Top5 & Bot5 formula. - Microsoft Q&A
November 5, 2021 - For the Top5 we have no problem always the same (<=5). But for the Bottom5 must be dynamic since your data will change every day · The sample data has 32 rows so the Bottom 5 values are the ones in rows 28, 29, 30, 31, and 32 ... After applying the Conditional column step, we need to tweak the M-code in the query editor to make the Bottom 5 dynamic. ... = Table.AddColumn(#"Added Index", "Top5-Bot5", each if [Index] <= 5 then [#"Rel Gain/Loss"] else if [Index] > 27 then[#"Rel Gain/Loss"] else null)
🌐
Exceljet
exceljet.net › sum top n values
Sum top n values - Excel formula | Exceljet
January 19, 2023 - To sum the largest n values in a range, you can use a formula based on the LARGE function. In the example shown, the formula in cell E5 is: =SUM(LARGE(data,SEQUENCE(D5))) where data is the named range B5:B16. The result 190, the sum of 70, 65, ...
🌐
Super User
superuser.com › questions › 1658401 › top-5-absolute-values
microsoft excel - Top 5 absolute values - Super User
June 23, 2021 - In above formula If(Row(A1)<=5 is adjustable. Adjust cell references in the formula as needed. ... Maybe you need to add ABS function in your formula, just in case, positive and negative numbers appear randomly. ... @Emily ,, nice idea but in col K both +ve & -ve are in Random order and my formula works !! Adding ABS will return same numbers . ... Your answer set should have both Large3 and Large4 as the absolute value of both are 7 (and are the top 2 largest numbers in terms of absolute value).
🌐
The Bricks
thebricks.com › resources › guide-how-to-get-top-5-values-in-excel-pivot-table
How to Get Top 5 Values in an Excel Pivot Table
February 20, 2025 - Excel will likely auto-select your data range. Click OK to create the PivotTable in a new worksheet. In the PivotTable Fields pane on the right, drag the Product field into the Rows area. Drag the Sales Amount field into the Values area. Ensure it says "Sum of Sales Amount." You should now have a simple PivotTable listing each unique product and its total sales. This is our starting point. With our PivotTable ready, finding the Top 5 products by sales is just a few clicks away.
🌐
Ablebits
ablebits.com › ablebits blog › excel › excel formulas › excel large function to get n-th highest value
Excel LARGE function to get n-th highest value
May 3, 2023 - The tutorial guides you on how to use LARGE function in Excel to get top n values, sum or average largest numbers in a dataset, get a closest future date, and more.