STDEV

    Statistical

    Estimates standard deviation based on a sample (ignores text and logical values).

    Translations
    EnglishSTDEV
    FrenchECARTYPE
    SpanishDESVEST
    GermanSTABW
    ItalianDEV.ST
    PortugueseDESVPAD
    DutchSTDEV
    PolishODCH.STANDARDOWE
    RussianСТАНДОТКЛОН
    TurkishSTDSAPMA
    CzechSMODCH
    HungarianSZÓRÁS
    SwedishSTDAV
    DanishSTDAFV
    FinnishKESKIHAJONTA
    Syntax
    STDEV(number1, [number2], ...)

    Arguments

    • number1First number or range
    • number2Additional numbers(optional)
    Examples
    =STDEV(A1:A100)
    Sample std dev

    Standard deviation of sample

    =STDEV(85,90,78,92,88)
    5.18

    Std dev of test scores

    =STDEV(Sales)
    Sales variability

    Measures sales consistency

    Tips & Best Practices
    • Use STDEV.P for entire population
    • Higher value means more spread
    • Text and logical values ignored
    Common Mistakes
    • Using STDEV (sample standard deviation) when the data represents an entire population rather than a sample - this uses the wrong divisor (n-1 instead of n) and slightly overstates the spread for population data
    • Confusing STDEV with VAR - STDEV returns the square root of variance, in the same units as the original data, while VAR stays in squared units that are harder to interpret directly
    • Applying STDEV to a dataset with only one value, which returns a #DIV/0! error since sample standard deviation is undefined for a single data point
    Related Functions
    STDEV.PCalculates standard deviation for an entire population rather than a sample, using n instead of n-1 as the divisor.
    VARCalculates variance, the squared value that STDEV takes the square root of to return a more interpretable, same-unit measure.
    AVERAGEOften paired with STDEV to describe a dataset's center and spread together.
    Frequently Asked Questions

    Should I use STDEV or STDEV.P?

    Use STDEV (or STDEV.S) when your data is a sample of a larger population - the more common case. Use STDEV.P only when your data genuinely represents the entire population, not just a subset of it.

    Why does STDEV return #DIV/0!?

    There's likely only one numeric value in the range - sample standard deviation requires at least two data points, since its formula divides by n-1.

    What's the difference between STDEV and VAR?

    STDEV is the square root of VAR's result. Standard deviation is expressed in the same units as your original data, making it easier to interpret than variance, which is in squared units.

    Need to translate a formula using STDEV?

    Use our translator to convert your complete formula