Troubleshooting: google sheets 0 not showing
Practical, step-by-step troubleshooting for when zeros don’t appear in Google Sheets. Learn formatting, formulas, and display tricks to reveal 0 values quickly.

Zeros not showing in Google Sheets usually stem from formatting or formulas. Start by checking any custom number formats, conditional formatting, and formulas that return blank strings. If these are fine, review filters and view settings to ensure zeros are visible. This quick check often reveals the culprit without altering data, and guides you to the deeper steps in this guide.
Why google sheets 0 not showing happens
The phrase google sheets 0 not showing captures a common display issue that frustrates students, professionals, and data editors. According to How To Sheets, zeros can disappear from your grid for several reasons that are easy to diagnose with a quick check. The most frequent culprits are formatting decisions that hide zero values, and formulas or data connections that return an empty string instead of 0. When zeros vanish, it’s rarely a data problem; it’s usually how the cell is presented or calculated. When zeros vanish, it’s rarely a data problem; it’s usually how the cell is presented or calculated. This block explores the top scenarios and how to spot them quickly, so you can restore zeros without re-entering data. Start by noting whether you recently changed a format, copied data from another source, or applied a chart or filter. Each change affects how 0s appear and can be undone with a few clicks. Keep in mind that even subtle options—like custom number formats or white-on-white text—can make 0 look invisible. The How To Sheets team has found that addressing presentation first dramatically reduces troubleshooting time and avoids accidental data edits.
Common scenarios where zeros disappear in Sheets
ZerOS may vanish in Sheets due to several common situations. A frequent offender is a custom number format that omits the digit for zero, displaying others instead. Conditional formatting with white font on a white background can also hide 0s. When data is pulled from external sources, data types can shift, turning 0 into the text '0' or leaving it as an empty string in certain functions. Filters and hidden rows can also mask zeros in large datasets. By recognizing these patterns, you can spot the cause quickly and apply the right fix without touching your data logic.
The impact of number formatting: show zeros vs blanks
Number formatting controls how numbers appear, not their actual value. A custom format like 0;-0;;@ can hide zeros entirely by describing what to show for zero values. If the sheet uses a locale with a different decimal symbol, 0 may be rendered strangely in some fonts. The antidote is to switch to a standard format (Number) or create an explicit zero display pattern, such as 0;0;0;@, which guarantees 0 is always visible in the grid.
How conditional formatting can hide zeros
Conditional formatting can unintentionally hide zeros if rules color cells to blend with the background or set a font color that makes 0s invisible. Review all conditional formatting rules applied to the affected range, test by temporarily turning off rules, and observe whether zeros appear. If they do, refine rules to include 0 as a distinct case rather than suppressing it.
Formulas that return blank strings: returning 0 instead
A formula may return an empty string ("") rather than a numeric zero, especially when using IF, FILTER, or IFERROR chains. This makes the value appear blank even though the underlying data contains 0. Replace blanks with 0 using a formula pattern like IF(ISBLANK(A1), 0, A1) or wrap with VALUE to coerce text to numbers. Test across rows and columns.
Filters, hidden rows, and data validation
A filter view might hide rows where value equals 0, or rows with values evaluated as blanks. Ensure no filter hides zeros and that hidden rows are revealed. Data validation or protection settings can also display or hide values in subtle ways when combined with conditional formatting. Temporarily disable protections to verify the raw values.
Step-by-step fixes you can apply now
Apply these fixes in order to quickly recover 0 display:
- Check cell formatting and reset to Number. 2. Remove any custom formats that suppress zeros. 3. Review conditional formatting rules and temporarily disable them. 4. Inspect formulas that return blanks and modify to return 0 instead. 5. Clear any filters affecting the dataset. 6. Refresh data connections and charts. 7. Copy data to a fresh sheet to confirm the issue isn't sheet-specific.
Prevention and best practices
To prevent google sheets 0 not showing in future work, adopt consistent number formats across sheets, avoid blanks in results, and audit formulas that generate zeros. Use consistent locale settings; keep data types uniform; whenever you pull data from external sources, standardize values before analyses. Create a quick 'zero display' template for new sheets and keep a copy for testing.
Steps
Estimated time: 15-30 minutes
- 1
Open the affected sheet and locate zeros
Scan the dataset to identify where zeros should appear. Note any patterns across columns or rows where zeros are missing. This helps you decide whether the issue is widespread or isolated to a particular area.
Tip: Mark a sample area with a sticky note or comment to track where you test fixes. - 2
Check cell formatting for numbers
Select affected cells and review the Format menu. If the cells are set to Text, zeros may not display as numbers. Change to Number or Automatic and observe if zeros reappear.
Tip: If you see a decimal symbol issue, adjust the locale in File > Spreadsheet settings. - 3
Inspect for custom number formats
Look at Format > Number > More formats and any custom format pattern. A pattern like 0;-0;;@ hides zeros. Replace with a standard pattern such as 0;0;0;@ to ensure 0 is visible.
Tip: Apply a consistent format to the entire sheet to avoid mixed results. - 4
Review conditional formatting rules
Open Format > Conditional formatting and examine rules for the affected cells. Temporarily disable rules to see if zeros appear, then refine rules to include zero as a distinct case.
Tip: Document rule logic so you can re-enable rules safely. - 5
Audit formulas that return blanks
Identify formulas that might return an empty string ("") instead of 0. Replace with IF(ISBLANK(cell), 0, cell) or wrap with VALUE where appropriate.
Tip: Test formulas on a small sample before applying to the entire range. - 6
Verify filters and hidden rows
Check any active filters or hidden rows that might hide zeros. Clear filters, unhide rows, and refresh the sheet to verify the raw values.
Tip: Remember that a temporary filter view could mask zeros in a subset of data.
Diagnosis: Zeros are not visible in multiple cells where value 0 is expected
Possible Causes
- highCustom number formatting hides zeros
- highConditional formatting makes 0 appear as blank or white text
- mediumFormulas returning blanks "" instead of 0
- lowFilters or hidden rows conceal zeros
Fixes
- easyReset cell formatting to a standard Number format and remove any custom zero-hiding formats
- easyReview and disable conflicting conditional formatting rules that affect zeros
- easyModify formulas to return 0 instead of blank strings where appropriate
- easyCheck any active filters or hidden rows and reveal all data
FAQ
Why are zeros not showing in Google Sheets even when data contains zeros?
Common causes include custom number formats that hide zeros and conditional formatting that blends zeros into the background. Review the sheet's formatting and rules to determine the culprit, then apply a targeted fix.
Zeros can disappear due to formatting or formatting rules. Check number formats and conditional formatting to fix it.
How can I show zeros in charts and pivot tables where data includes 0 values?
Ensure the underlying data includes actual 0 values (not blanks), and verify chart/pivot settings to display zeros. Refresh data after changing formats and consider using a dedicated zero-visibility style.
Make sure your data has real zeros and that your charts aren’t filtering them out.
What should I do if a formula returns an empty string instead of zero?
Rewrite the formula to return 0 instead of an empty string, e.g., IF(ISBLANK(A1), 0, A1) or use VALUE to coerce text to numbers.
Change the formula to return 0, not an empty string.
Do regional settings affect how zeros are displayed in Google Sheets?
Regional settings mainly influence decimal separators. Zeros themselves are normally unaffected, but number formats may look different in different locales.
Regional settings mainly change decimals, zeros should still display, just maybe with a different decimal symbol.
Watch Video
The Essentials
- Check formatting first to reveal zeros
- Avoid using formulas that return blanks unless intentional
- Review conditional formatting rules for color/visibility conflicts
- Disable filters to verify raw data shows zeros
- Test changes on a copy before applying widely
