#####


This error indicates that a column is not wide enough to display all of its content, or that a negative date or time is used in a cell.

Causes

Resolution

In some cases, you can change the number or date format of a cell to make its contents fit within the existing cell width. For example, you can decrease the number of decimal places after the decimal point or switch from a Long Date to a Short Date format.

#DIV/0!


Microsoft Excel displays the #DIV/0! error when a number is divided either by zero (0) or by a cell that contains no value.

Causes

Resolution

Entering #N/A will change the result of the formula to #N/A from #DIV/0! to indicate that the divisor value is not available.

For example, if the formula that produces the error is =A1/A2, use =IF(A2=0,"",A1/A2) to return an empty string, or =IF(A2=0,0,A1/A2) to return 0.

#N/A


This error indicates that a value is not available to a function or formula.

Causes

Resolution

Tip: Review the following resolutions to help determine which option to click.

For information about using the correct arguments with functions, see HLOOKUP function, LOOKUP function, MATCH function, or VLOOKUP function

The MATCH worksheet function contains a match_type argument that specifies the order the list must be sorted in to find a match. If the function cannot find a match, try changing the value of the match_type argument. To find an exact match, set the match_type argument to 0.

#NAME?


This error occurs when Microsoft Excel does not recognize text in a formula.

Causes

Resolution

Tip: Review the following resolutions to help determine which option to click.

="The total amount is B50

#NUM!


This error indicates that a formula or function contains invalid numeric values.

Causes

Resolution

Tip: Review the following resolutions to help determine which option to click.

#NULL!


This error occurs when you specify an intersection of two areas (ranges) on a worksheet that do not intersect. The intersection operator is a space character between references.

Causes

Resolution

Tip: Review the following resolutions to help determine which option to click.

When you enter or edit a formula, cell references and the borders around the corresponding cells are color-coded.

#REF!


This error occurs when a cell reference is not valid.

Causes

NOTE: OLE is a technology that you can use to share information between programs.

NOTE: DDE is an established protocol for exchanging data between Microsoft Windows-based programs.

Resolution

Tip: Review the following resolutions to help determine which option to click.

#VALUE!


Microsoft Excel may display the #VALUE! error if your formula includes cells that contain different data types. If error checking is enabled and you position the mouse pointer over the error indicator, the ScreenTip displays "A value used in the formula is of the wrong data type." You can typically fix this problem by making minor changes to your formula.

Causes

For example, the formula =A1+B1, where A1 contains the string "Hello" and B1 contains the number 3, returns the #VALUE! error.

For example, the formula PRODUCT(3,"Hello") returns the #VALUE! error because the PRODUCT function requires numbers as arguments.

Resolution

For example, use the formula =SUM(A2,A3,A4) instead of =A2+A3+A4 or =SUM(A2+A3+A4).


Source: Microsoft Excel 2010 Help posted: 2025 Dec 5 | Hits