DAX Function Guide
STDEV.P
Sam McKay
CEO & Founder
How does the STDEV.P work?
STDEV.P Formula Syntax
STDEV.P(
<ColumnName>
)
How do you use the STDEV.P?
This function is used to calculates the standard deviation for a sample set of data. The STDEV.P calculates standard deviation using the “n” method, ignoring logical values and text.
Related Blog Posts
Loading
Considerations when using the STDEV.P?
- STDEV.P assumes that the column refers to the entire population. If your data represents a sample of the population, then compute the standard deviation by using STDEV.S.
- STDEV.P uses the following formula:√[∑(x – x̃)²/n]where x̃ is the average value of x for the entire populationand n is the population size
- Blank rows are filtered out from columnName and not considered in the calculations.
- An error is returned if columnName contains less than 2 non-blank rows
Related Video Tutorials
Loading
Formula examples using the STDEV.P
=STDEV.P(InternetSales_USD[SalesAmount_USD])
=STDEV.P(A3:A12)
=STDEV.P(C5:C16,E5:E16,G5:G16)
Related Courses
Loading