COUNT

    Statistical

    Counts the number of cells that contain numbers. Does not count empty cells, text, or error values.

    Translations
    EnglishCOUNT
    FrenchNB
    SpanishCONTAR
    GermanANZAHL
    ItalianCONTA.NUMERI
    PortugueseCONT.NÚM
    DutchAANTAL
    PolishILE.LICZB
    RussianСЧЁТ
    TurkishBAĞ_DEĞ_SAY
    CzechPOČET
    HungarianDARAB
    SwedishANTAL
    DanishTÆL
    FinnishLASKE
    Syntax
    COUNT(value1, [value2], ...)

    Arguments

    • value1The first cell or range to count
    • value2Additional cells or ranges to count(optional)
    Examples
    =COUNT(A1:A10)
    8

    Counts how many cells in A1:A10 contain numbers

    =COUNT(1,2,"text",4)
    3

    Counts only the numeric values (ignores text)

    =COUNT(A:A)
    100

    Counts all numeric values in column A

    Tips & Best Practices
    • Use COUNTA to count all non-empty cells including text
    • Use COUNTBLANK to count empty cells
    • Dates and times are counted as numbers
    Common Mistakes
    • Using COUNT expecting it to count text entries too - it only counts cells containing numbers
    • Confusing COUNT with COUNTA, then wondering why text-based entries like names aren't showing up in the total
    • Counting a range that includes dates or times without realizing they're stored as numbers, so they get counted like any other number
    Related Functions
    COUNTACounts any non-empty cell, including text - use this if you need to count everything, not just numbers
    COUNTBLANKCounts empty cells instead of filled ones
    COUNTIFCounts cells that meet a specific condition
    Frequently Asked Questions

    What's the difference between COUNT and COUNTA?

    COUNT only counts cells containing numbers. COUNTA counts any cell that isn't empty, including text, dates, and logical values.

    Does COUNT include a cell with a formula that returns an empty string?

    No - a formula returning "" looks empty but is technically text, so COUNT skips it, while COUNTA would still count it.

    Can COUNT tell me the total number of cells in a range?

    Not directly - it only counts numeric cells. For the total number of cells regardless of content, use ROWS(range)*COLUMNS(range).

    Need to translate a formula using COUNT?

    Use our translator to convert your complete formula