FormulaCraft

Fix the ##### error

Excel only
Topic:SaaS metrics

What ##### means

Excel fills a cell with hash marks (####) when the column is too narrow to display the formatted value — most commonly a date, currency, or large number. No data is lost; the value is intact. Widening the column or reducing the number format makes the value visible again.

Common causes

Example fix

Broken
=DATE(2024,1,15)
Fixed
=TEXT(DATE(2024,1,15),"M/D/YY")

If the column is too narrow to show the full date format, wrapping in TEXT() with a compact format string produces a shorter string that fits. Widening the column and keeping the date format is usually preferable for downstream date math.

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. 1Double-click the column border in the column header to auto-fit the column to the widest value. Alternatively, right-click the column header > Column Width > type a larger number.
  2. 2Select the entire column (click the column letter), then in Excel: Home > Format > AutoFit Column Width.
  3. 3To auto-fit all columns at once: press Ctrl+A to select all, then double-click any column border between two column headers.
  4. 4If the cell contains a date, verify the serial number is positive (check the underlying value with =A2+0 in a General-formatted cell). A negative value means the date formula produced an invalid result.
  5. 5If widening the column is not possible (e.g., fixed-width print layout), apply a shorter format: Ctrl+1 > Number > Date > choose a short date format like 'M/D/YY'.

Stop hunting errors by hand.

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

Frequently asked

Does ##### mean my data is corrupted?

No. The data is intact. #### is purely a display issue — the column is too narrow. Double-clicking the column border to auto-fit immediately reveals the value.

I widened the column but still see #### — what else could cause this?

The cell likely contains a date formula that returned a negative serial number (e.g., a subtraction where the end date is earlier than the start date). Check the actual value by formatting the cell as Number to see the serial number. Fix the underlying formula logic.

Does Google Sheets show #### for narrow columns?

Google Sheets does not show ####. It clips the visible text instead. The ##### behavior is specific to Excel.

More on SaaS metrics

See all →

Related formulas

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

Last reviewed: