Return a Blank Instead of a Zero
A monthly sales report is littered with zeros — reps with no sales, regions with no activity — and the zeros bury the numbers that matter. You want those cells to read as empty.
Excel & Google Sheets
This formula works in both Excel and Google Sheets.
How it works
If the value is zero, the formula returns "" — empty text that displays as nothing — otherwise it passes the value through untouched. But that blank is cosmetic, not a real empty cell, and it changes downstream math: AVERAGE skips text, so an average over the display column ignores the zero months entirely and reads higher than the truth, and arithmetic like C2*1.1 on a "" cell returns #VALUE!. Same philosophy as guarding #DIV/0!: hide a value only where people read it, never in a column other formulas calculate from. If you just want zeros invisible, a custom number format (0;-0;;@) hides them with the real numbers intact underneath.
When to use it
Use it on presentation copies of reports — sales by rep, spend by category, units by branch — where zeros are noise. Keep the raw numbers in their own column for any math.
Common mistakes
Did this formula help?
Engine-verified against the sample data aboveDownload the proof sheet (.xlsx)Last reviewed 2026-07-09