← All functions

RANK.AVG

Supported, behaves as documented

Category: Statistical · Last tested 2026-07-04

Support matrix

EngineDocumentedLive-testedVerdict
Excel Yes Not yet n/a
Google Sheets Yes Not yet n/a
LibreOffice Calc Yes Yes (24.2.7.2, 2026-07-04) Supported, behaves as documented

Executed test cases

LibreOffice Calc 24.2.7.2 (tested 2026-07-04)

FormulaDescriptionResultExpectedVerdict
=RANK.AVG(20,A1:A5) Documented divergence from RANK.EQ: tied values get the AVERAGE of the ranks they would occupy, not the top rank. Per Microsoft's RANK.AVG docs (https://support.microsoft.com/en-us/office/rank-avg-function-bd406a6f-eb38-4d73-aa8e-6d1c3c72e83a): "If more than one value has the same rank, the average rank is returned." 3.5 3.5
The two tied 20s would occupy ranks 3 and 4 (descending); average = (3+4)/2 = 3.5, vs RANK.EQ's 3 on identical data
Matched
=RANK.AVG(30,A1:A5) With no ties, RANK.AVG matches RANK.EQ exactly 2 2 Matched
=RANK.AVG(20,A1:A5,1) Tie-averaging also applies with the ascending order argument 2.5 2.5
Ascending, the two tied 20s would occupy ranks 2 and 3 (only 10 is smaller); average = 2.5
Matched

Docs & syntax