Skip to main content
STDDEV

Calculates the standard deviation of a specified numeric field within a range or partition

Updated over a month ago

Description

The STDDEV() function calculates the standard deviation of a specified numeric field within a range or partition. This is useful for measuring the dispersion or variability of the data.

Syntax

STDDEV(number)

Output

numeric

Variables

  1. number: the numeric field on which to calculate the standard deviation.

Example

STDDEV(Value) Over (Partition by Group)

ID

Group

Value

STDDEV

1

A

10

5

2

A

20

5

3

A

15

5

4

B

30

7.071

5

B

40

7.071

Did this answer your question?