Excel Error Codes Explained

    Understand common Excel errors, their causes, and how to fix them. Error names shown in English, French, Spanish, and German.

    8 errors found
    #N/A
    EN: #N/A
    FR: #N/A
    ES: #N/A
    DE: #NV
    PO:

    Value not available - the formula cannot find the requested data.

    Common causes
    • VLOOKUP/XLOOKUP cannot find the lookup value in the range
    • MATCH function finds no matching value
    • Missing data in the referenced cells
    Quick fix

    Use IFERROR to handle missing values gracefully, or verify your lookup value exists in the data.

    #VALUE!
    EN: #VALUE!
    FR: #VALEUR!
    ES: #VALOR!
    DE: #WERT!
    PO:

    Wrong type of argument or operand - the formula received unexpected data.

    Common causes
    • Trying to add text to a number without conversion
    • Using a range where a single value is expected
    • Text in cells that should contain numbers
    Quick fix

    Check that all cell references contain the expected data type. Use VALUE() to convert text to numbers.

    #NAME?
    EN: #NAME?
    FR: #NOM?
    ES: #NOMBRE?
    DE: #NAME?
    PO:

    Unrecognized formula name - Excel doesn't understand a name in the formula.

    Common causes
    • Misspelled function name (e.g., SUMM instead of SUM)
    • Missing quotes around text strings
    • Using a named range that doesn't exist
    Quick fix

    Check spelling of function names and ensure text values are enclosed in double quotes.

    #REF!
    EN: #REF!
    FR: #REF!
    ES: #REF!
    DE: #BEZUG!
    PO:

    Invalid cell reference - the formula points to cells that no longer exist.

    Common causes
    • Deleted rows or columns that the formula referenced
    • Pasted over cells that were part of a formula
    • Circular reference between cells
    Quick fix

    Undo the deletion or manually correct the cell references in the formula.

    #DIV/0!
    EN: #DIV/0!
    FR: #DIV/0!
    ES: #DIV/0!
    DE: #DIV/0!
    PO:

    Division by zero - the formula is trying to divide by zero or an empty cell.

    Common causes
    • Dividing by a cell that contains zero
    • Dividing by an empty cell
    • AVERAGE of an empty range
    Quick fix

    Use IF or IFERROR to check if the divisor is zero before dividing.

    #NUM!
    EN: #NUM!
    FR: #NOMBRE!
    ES: #NUM!
    DE: #ZAHL!
    PO:

    Invalid numeric value - the formula produces a number that Excel cannot handle.

    Common causes
    • Result is too large or too small for Excel
    • Square root of a negative number
    • IRR or RATE cannot find a valid result
    Quick fix

    Check input values are within valid ranges. Use ABS() for values that might be negative.

    #NULL!
    EN: #NULL!
    FR: #NUL!
    ES: #NULO!
    DE: #NULL!
    PO:

    Incorrect range operator - ranges in the formula don't intersect.

    Common causes
    • Space used instead of comma between ranges
    • Two ranges with no common cells
    • Incorrect use of intersection operator
    Quick fix

    Use comma (or semicolon) to separate ranges instead of space.

    #SPILL!
    EN: #SPILL!
    FR: #EPARS!
    ES: #DESBORDAMIENTO!
    DE: #ÜBERLAUF!
    PO:

    Spill range blocked - a dynamic array formula cannot expand into adjacent cells.

    Common causes
    • Non-empty cells blocking the spill range
    • Merged cells in the spill area
    • Table boundaries blocking expansion
    Quick fix

    Clear the cells where the formula needs to spill its results.