FormulaCraft

Fix the #NULL! error

Excel only

What #NULL! means

#NULL! is an Excel-specific error caused by the intersection operator — a space between two references. It appears when you ask for the overlap of two ranges that do not actually intersect.

Common causes

Example fix

Broken
=SUM(A1:A5 C1:C5)
Fixed
=SUM(A1:A5, C1:C5)

The space asked for an intersection that does not exist. A comma adds both ranges.

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

How to fix it

  1. 1Look for an accidental space between cell references inside the formula.
  2. 2Use a comma to add separate ranges together: =SUM(A1:A5, C1:C5).
  3. 3Use a colon to define one continuous range: =SUM(A1:C5).
  4. 4Only use a space deliberately when you truly want the intersection of two overlapping ranges.

Stop hunting errors by hand.

Upload your spreadsheet and the Auditor flags every #NULL! and broken formula at once — or paste this one formula and get the fix explained.

Frequently asked

Does Google Sheets have a #NULL! error?

No. #NULL! is specific to Excel’s intersection operator. Google Sheets handles the same mistake differently.

Related formulas

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: