DStDevP Method

Microsoft Access Visual Basic

Show All

DStDevP Method

       

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

expression.DStDevP(Expr, Domain, Criteria)

expression   Required. An expression that returns one of the objects in the Applies To list.

Expr  Required String. An 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. In expr, you can include the name of a field in a table, 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  Required String. A string expression identifying the set of records that constitutes the domain. It can be a table name or a query name.

Criteria  Optional Variant. An optional string expression used to restrict the range of data on which the DStDevP function is performed. For example, criteria is often equivalent to the WHERE clause in an SQL expression, without the word WHERE. If criteria is omitted, the DStDevP function evaluates expr against the entire domain. Any field that is included in criteria must also be a field in domain; otherwise, the DStDevP function will return a Null.

Remarks

Use the DStDevP function to evaluate a population.

If domain refers to fewer than two records or if fewer than two records satisfy criteria, the DStDevP function returns a Null, indicating that a standard deviation can't be calculated.

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

You can use the DStDevP function to specify criteria in the criteria row of a select query.

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

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

Use the DStDevP function in a calculated control when you need to specify criteria to restrict the range of data on which the function is performed.

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

Tip   If the data type of the field from which expr is derived is a number, the DStDevP function returns a Double data type. If you use the DStDevP function 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 DStDevP function to be based on the changed values, you must first save the changes by clicking Save Record on the File menu, moving the focus to another record, or by using the Update method.

Example

The following 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.
dblX = DStDev("[Freight]", "Orders", "[ShipCountry] = 'UK'")
' Population estimate.
dblY = DStDevP("[Freight]", "Orders", "[ShipCountry] = 'UK'")

The next example calculates the same estimates by 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
strCountry = "UK"
dblX = DStDev("[Freight]", "Orders", _
    "[ShipCountry] = '" & strCountry & "'")
dblY = DStDevP("[Freight]", "Orders", _
    "[ShipCountry] = '" & strCountry & "'")