Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed:
A formula that references an empty cell, or performs arithmetic that results in zero, will display 0 rather than leave the cell visually blank. Zero and blank are different values in spreadsheets — 0 is a number, blank is the absence of a value — and they behave differently in charts, counts, and formatting.
=IF(A2>0,B2/A2)=IF(A2>0,B2/A2,"")An IF with only two arguments (condition, true_value) returns FALSE when the condition is false. In a numeric context, FALSE displays as 0. Adding an explicit empty string "" as the third argument returns a blank cell instead.
Edit the grid or formula, then run it through a real spreadsheet engine — no signup.
Sample data — click any cell to edit
Stop hunting errors by hand.
Upload your spreadsheet and the Auditor flags every 0 vs blank and broken formula at once — or paste this one formula and get the fix explained.
Yes. SUM, SUMIF, and AVERAGE ignore text values including empty strings. However, COUNT counts only numbers, so cells with "" are not counted — use COUNTA if you need to count all non-blank cells including text.
A truly blank cell is empty — ISBLANK() returns TRUE and COUNT ignores it. A cell with "" contains a zero-length text string — ISBLANK() returns FALSE. For most display purposes they look the same, but ISBLANK-based logic, COUNTBLANK, and certain filter behaviours treat them differently.
In Excel: File > Options > Advanced > 'Show a zero in cells that have zero value' — uncheck it for the active sheet. In Google Sheets there is no equivalent sheet-wide setting; use a custom number format (0;-0;;@) on the affected range instead.
Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.
Last reviewed: