DStDev, DStDevP Functions

Description

You can use the DStDev and DStDevP functions to estimate the standard deviation across a set of values in a specified set of records (domain). Use DStDev and DStDevP in a macro or module, in a query expression, or in a calculated control on a form or report.

Use DStDevP to evaluate a population, and DStDev to evaluate a population sample.

For example, you could use the DStDev function in a module to calculate the standard deviation across a set of students’ test scores.

Syntax

DStDev(expr, domain[, criteria])DStDevP(expr, domain[, criteria])

The DStDev and DStDevP functions use the following arguments.

Argument Description
expr Expression that identifies the numeric field on which you want to find the standard deviation. It can be a string expression identifying a field from a table or query, or it can be an expression that performs a calculations on data in that field. You can include in expr the name of a table field, a control on a form, a constant, or a function. If expr includes a function, it can be either built-in or user-defined, but not another domain aggregate or SQL aggregate function.
domain String expression identifying the set of records that constitutes the domain. It can be a table name or a query name.
criteria Optional string expression used to restrict the range of data on which DStDev or DStDevP is performed. For example, criteria is often equivalent to the WHERE clause in an SQL expression, without the word WHERE. If criteria is omitted, DStDev and DStDevP evaluate expr against the entire domain. Any field included in criteria must also be a field in domain; otherwise, DStDev and DStDevP will return a Null.


Remarks

DStDev and DStDevP find the standard deviation on a set of values defined by expr in the table or query referred to by domain, according to any restrictions specified by criteria.

If domain refers to fewer than two records or if fewer than two records satisfy criteria, DStDev and DStDevP return a Null, indicating that a standard deviation can’t be calculated.

Whether you use DStDev or DStDevP in a macro or module, a query expression, or a calculated control, you must construct the criteria argument carefully to ensure that it will be evaluated correctly.

You can use DStDev and DStDevP to specify criteria in the criteria row of a select query. For example, you could create a query on an Orders table and a Products table to display all products for which the freight cost fell above the mean plus the standard deviation for freight cost. The criteria row beneath the Freight field would contain the following expression:


> (DStDev("[Freight]", "Orders") + DAvg("[Freight]", "Orders"))

You can use DStDev and DStDevP within a calculated field expression in a query, or in the Update To row of an update query.

Note You can use DStDev and DStDevP or StDev and StDevP in a calculated field expression in a totals query. If you use DStDev or DStDevP, values are calculated before data is grouped. If you use StDev or StDevP, the data is grouped before values in the field expression are evaluated.

Use DStDev and DStDevP in a calculated control when you need to specify criteria to restrict the range of data on which the function is performed. For example, to display standard deviation for orders to be shipped to California, set the ControlSource property of a text box to the following expression:


= DStDev("[Freight]", "Orders", "[ShipRegion] = 'CA'")

If you simply want to find the standard deviation across all records in domain, use the StDev or StDevP function.

Tip If the data type of the field from which expr is derived is a number, DStDev and DStDevP return a Double. If you use DStDev or DStDevP in a calculated control, include a data type conversion function in the expression to improve performance.

Note Unsaved changes to records in domain are not included when you use these functions. If you want the DStDev or DStDevP function to be based on the changed values, you must first save the changes by choosing the Save Record command from the File menu, moving the focus to another record, or using the Update method.

See Also

Domain Aggregate Functions.

Example

This example returns estimates of the standard deviation for a population and a population sample for orders shipped to the United Kingdom. The domain is an Orders table. The criteria argument restricts the resulting set of records to those for which the ShipCountry is UK.


Dim dblX As Double, dblY As Double
' Sample estimate.= DStDev("[Freight]", "Orders", "[ShipCountry] = 'UK'")
' Population estimate.= DStDevP("[Freight]", "Orders", "[ShipCountry] = 'UK'")

The next example calculates the same estimates using a variable, strCountry, in the criteria argument. Note that single quotation marks (') are included in the string expression, so that when the strings are concatenated, the string literal UK will be enclosed in single quotation marks.


Dim strCountry As String, dblX As Double, dblY As Double= "UK"= DStDev("[Freight]", "Orders", _
    "[ShipCountry] = '" & strCountry & "'")= DStDevP("[Freight]", "Orders", _
    "[ShipCountry] = '" & strCountry & "'")