1
A1:L1 · Cell value

Apple Numbers formulas.

D2
2

Updated · 2026-05-29 · ~7 min read

How Apple Numbers differs from Excel

Apple Numbers supports most of the same functions as Excel — but a few key differences trip people up when they paste an Excel formula and it does not work:

The good news: the everyday functions — VLOOKUP, IF, SUMIF, SUMIFS, COUNTIF, INDEX, MATCH, AVERAGE — all work with the same names and arguments as Excel.

Common formulas in Numbers

Lookup a value (VLOOKUP)

=VLOOKUP(E1, A:B, 2, FALSE)

Searches column A for the value in E1 and returns the matching value from column B. FALSE forces an exact match.

Lookup in any direction (INDEX/MATCH)

=INDEX(B:B, MATCH(E1, A:A, 0))

Because Numbers has no XLOOKUP, this is the go-to for looking up to the left.

Conditional value (IF)

=IF(B2>100, "High", "Low")

Conditional sum (SUMIF / SUMIFS)

=SUMIF(A:A, "West", B:B)
=SUMIFS(C:C, A:A, "January", B:B, "West")

Count with a condition (COUNTIF)

=COUNTIF(D:D, ">100")

Tips for working with Numbers references

Generate Numbers-safe formulas with FormulaAI

Pick Apple Numbers as your platform in FormulaAI, describe what you need, and it returns a formula that works in Numbers — automatically avoiding unsupported functions like XLOOKUP and QUERY, and offering INDEX/MATCH where Excel would use XLOOKUP.

Frequently asked questions

Does Apple Numbers use the same formulas as Excel?

Mostly yes. Numbers supports the same core functions as Excel — VLOOKUP, IF, SUMIF, SUMIFS, COUNTIF, INDEX, MATCH, AVERAGE — with the same names and arguments. The main differences are that Numbers does not have XLOOKUP, QUERY, or Excel-style dynamic-array spilling, and it references cells through tables rather than a single grid.

How are cell references different in Apple Numbers?

Numbers organizes a sheet into separate tables, and formulas reference cells by clicking them, which produces table-aware references (and header names when headers exist) rather than plain A1-style addresses. The function arguments are the same; only the way references are written differs.

Does Apple Numbers have XLOOKUP?

No. XLOOKUP is not available in Apple Numbers. Use VLOOKUP for left-to-right lookups, or INDEX and MATCH together for lookups in any direction — both are fully supported in Numbers.

How do I do a VLOOKUP in Numbers?

Use the same syntax as Excel: =VLOOKUP(search_value, range, column_index, FALSE). Select the lookup value, the table range, and the column to return; FALSE forces an exact match. For left lookups, use INDEX/MATCH instead.

Can FormulaAI generate Numbers formulas?

Yes. Choose Apple Numbers as the target in FormulaAI and it returns formulas that work in Numbers — automatically avoiding functions Numbers does not support, such as XLOOKUP or QUERY.

Related guides

3
Try FormulaAI free → Next: INDEX MATCH → Pick Numbers · we keep the formula compatible · $2.99/mo unlimited
‹ ›
LandingCompareHow it works
Guides
FAQSupport