← All functions

XLOOKUP

Unsupported (not recognized)

Category: Lookup and reference · Last tested 2026-07-04

Support matrix

EngineDocumentedLive-testedVerdict
Excel Yes Not yet n/a
Google Sheets Yes Not yet n/a
LibreOffice Calc No Yes (24.2.7.2, 2026-07-04) Unsupported (not recognized)

Discovered quirks

Executed test cases

LibreOffice Calc 24.2.7.2 (tested 2026-07-04)

FormulaDescriptionResultExpectedVerdict
=XLOOKUP("b",A1:A3,B1:B3) Basic exact-match lookup returns the corresponding value #NAME? 2 Mismatch
=XLOOKUP("z",A1:A3,B1:B3) No if_not_found arg and no match -> #N/A #NAME? #N/A Mismatch
=XLOOKUP("z",A1:A3,B1:B3,"missing") Custom if_not_found value is returned when no match #NAME? missing Mismatch
=XLOOKUP(2.5,A1:A4,B1:B4,"none",-1) match_mode -1 (exact or next smaller item) with no exact match #NAME? 20
2.5 has no exact match; next-smaller is 2 -> 20
Mismatch
=XLOOKUP("x",A1:A4,B1:B4,"none",0,-1) search_mode -1 finds the LAST occurrence of a duplicated key #NAME? 3
Two rows match 'x' (1 and 3); reverse search returns the later one
Mismatch
=XLOOKUP("a",A1:A1,B1:B1) Degenerate 1-cell lookup/return arrays where the cell is blank #NAME? #N/A
A1 and B1 are blank; lookup value 'a' is not found
Mismatch

Docs & syntax