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.

Got the same error in multiple cells? Upload your whole sheet and the Auditor will flag every #NULL! and broken formula at once — free. Pro plans (₹199/$4.99/mo) can apply the verified fixes and download the corrected file in one click.

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: