What are the most useful Excel formulas you actually use regularly?
What do you think are the most useful Excel functions most people don’t know about?
function - Top 10 values in excel - Stack Overflow
How useful are the top 10 most popular Excel functions
What is MS Excel formulas and functions?
What are the basic formulas in Excel?
What are the 5 important formulas in Excel?
Videos
I’m taking an Excel class as part of my degree and we have an assignment to post to an online Excel forum. Most things have been easy enough to grasp, but before this course I had no idea PivotTables even existed. As the saying goes, you don’t know what you don’t know. So, to the experts and others learning more about Excel, what are some of the capabilities of the program that you think more people should be aware of?
You can use Large with Match and Index to get the list:-
See the image of my example. I have used dummy values.
Step1 :- Use this formula (I have used in D column 'Top 10')
=INDEX($A$2:$B$13,MATCH(LARGE($B$2:$B$13,ROW(1:1)),$B$2:$B$13,0),1)
Step2:- Then drag this formula down for 10 rows. You will get the top 10.
Let me know if you have any questions
Try the rank functions.The original RANK has been deprecated. You can use RANK.EQ instead.
The syntax is
=RANK.EQ(value, entireRangeOfValues).
e.g. =RANK.EQ(J2,$J$2:$J$8015,0)
The last parameter allows you to specify sort order.
Depending on your needs you can also look at RANK.AVG These differ in how they rank duplicate values.