Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
Heads up: Excel and Google Sheets do this differently.
=RANK.EQ(A2,$A$2:$A$6,0)=RANK(A2,$A$2:$A$6,0)Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Need it for your exact data?
Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.
RANK still works in all current Excel versions for backward compatibility, but Microsoft recommends RANK.EQ (or RANK.AVG when averaging ties) in new workbooks.
Google Sheets retained the original RANK name and did not adopt the .EQ suffix. The behavior is identical to Excel's RANK.EQ.
Add a tiebreaker column and use COUNTIFS to count how many values are strictly greater, then add 1: =COUNTIFS($A$2:$A$6,">"&A2)+1. This gives unique ranks without gaps.
Returns the rank of a number in a list, assigning the same rank to ties (same as RANK). Essential for leaderboards.
How-toRank a number against a list with RANK — highest first or lowest first. Works the same in Excel and Google Sheets.
ReferenceReturns the rank of a number, averaging ranks for ties. Useful in statistical analysis where tied ranks should not cluster.
How-toMeasure how spread out your numbers are with STDEV for a sample or STDEVP for a whole population. Works in Excel and Google Sheets.
ReferenceReturns the k-th percentile value from a dataset. Useful for performance benchmarking and threshold analysis.
How-toCombine values and their weights with SUMPRODUCT divided by the total weight. Works the same in Excel and Google Sheets.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: