Excel: Six Common Errors and How to Fix Them

If you've been using Microsoft Excel for a while, you must have seen those cryptic error messages appearing in your cells. Something like #REF! or #NULL!. They are supposed to help us fix mistakes, but their exact meaning is far from obvious.

In this short tutorial we will cover in detail the 6 most common error messages you can get in Excel, and how to fix them!

The #### Error

This one is easy, it means that there is not enough space in the cell to display the value.

a #### cryptic error message in an excel cell

To fix it, simply increase the size of the cell.

how to fix a #### cryptic error message in an excel cell

The #NAME? Error

This error appears when you are using a function that doesn't exist, which probably means that you made a spelling mistake.

a #name? cryptic error message in an excel cell

So proofread the function name to find the mistake, and fix it!

how to fix a #name? cryptic error message in an excel cell

The #DIV/0! Error

Do you know that it's impossible to divide a number by zero? And when you try to do just that in Excel, you get the #DIV/0! error.

a #div/0! cryptic error message in an excel cell

If that happens you have 2 solutions:

The #NULL! Error

This usually happens when you have an error in the syntax of your formula. Maybe you forgot a commas or a plus sign somewhere.

a #null! cryptic error message in an excel cell

The only way to fix that is to have a close look at your formula to see what's wrong.

how to fix a #div/0! cryptic error message in an excel cell

The #REF! Error

I don't like seeing this error, it means that a reference (cell or range) you are using is not valid. That can happen when you delete a column, or past stuff on top of data.

a #ref! cryptic error message in an excel cell

There's no easy fix, usually the best way is to start ths formula from scratch to make sure you didn't delete important data.

The #VALUE! Error

This is a classic mistake. This happens when your formula includes cells with different data types, like if you try to multiply a number by a text.

a #value! cryptic error message in an excel cell

So check all the cells/range in your formula to find which cells should not be there, and remove them.

how to fix a #value! cryptic error message in an excel cell

Bonus

If you really can't fix your error, it's possible to "hide" it with the IFERROR function:

=IFERROR(value, value-if-error)

Put your formula in the first parameter, and if there's an error, the second parameter will be executed.

fix a cryptic error message in an excel cell by using the iferror fomula

But try to avoid this solution as much as you can, because it's much better to actually fix the error than to "hide" it like that.

Conclusion

With all this information you can be quicker to debug your spreadsheet because you know exactly what the problem is :-)

Here's a quick recap of all the errors we saw with their meaning:

Other articles you might like on ExcelFrog.com