Purpose

Return value

Syntax

=DPRODUCT(database,field,criteria)
  • database - Database range including headers.
  • field - Field name or index to count.
  • criteria - Criteria range including headers.

Using the DPRODUCT function

The Excel DPRODUCT function calculates the product of values in a set of records that match criteria. The values to multiply are extracted from a given field in the database, specified as an argument.

The database argument is a range of cells that includes field headers, field is the name or index of the field to query, and criteria is a range of cells with headers that match those in database.

Field can be specified with a name or index. Using the example above, you can get the product of “Echo” dimensions with either formula below:

=DPRODUCT(B7:D13,"Value",B4:D5) // field by name
=DPRODUCT(B7:D13,3,B4:D5)) // field by index

Criteria options

The criteria can include a variety of expressions, including some wildcards . The table below shows some examples:

CriteriaBehavior
RedMatch “red” or “RED”
Re*Begins with “re”
10Equal to 10
>10Greater than 10
<>Not blank
<>100Not 100
>12/19/2017Greater than Dec 19, 2017

Note: support for wildcards is not as extensive as with other functions like COUNTIFS, SUMIFS, MATCH, etc. For example, the pattern ??? will match strings with 3 exactly characters in more modern functions, but not in the database functions. If you are using wildcards, test carefully.

Multi-row criteria

The criteria range for DPRODUCT can include more than one row below the headers. When criteria includes more than one row, each row is joined with OR logic, and the expressions in a given criteria row are joined with AND logic.

Notes:

  • DPRODUCT supports wildcards in criteria
  • Criteria can include more than one row (as explained above)
  • The field argument can be supplied as a name in double quotes ("") or as a number representing field index.
  • The database and criteria ranges must include matching headers.

Purpose

Return value

Syntax

=DSTDEV(database,field,criteria)
  • database - Database range including headers.
  • field - Field name or index to count.
  • criteria - Criteria range including headers.

Using the DSTDEV function

The Excel DSTDEV function gets the standard deviation of sample data extracted from records matching criteria. Essentially, this function calculates standard deviation on a subset of data, like a “standard deviation IF” formula.

The database argument is a range of cells that includes field headers, field is the name or index of the field to query, and criteria is a range of cells with headers that match those in database.

Using the example above, you can get the standard deviation of heights for the group “Fox” with either of these formulas:

=DSTDEV(B7:C13,"Height",B4:C5) // field by name
=DSTDEV(B7:C13,2,B4:C5) // field by index

The standard deviation for all heights in C8:C13 is calculated in F5 with the STDEV.S function:

=STDEV.S(C8:C13)

Criteria options

The criteria can include a variety of expressions, including some wildcards . The table below shows some examples:

CriteriaBehavior
RedMatch “red” or “RED”
Re*Begins with “re”
10Equal to 10
>10Greater than 10
<>Not blank
<>100Not 100
>12/19/2017Greater than Dec 19, 2017

Note: Support for wildcards is not quite the same as with other functions like COUNTIFS, SUMIFS, MATCH, etc. For example, the pattern ??? will match strings with 3 exactly characters in more modern functions, but not in the database functions. If you are using wildcards, test carefully.

Multi-row criteria

The criteria range for DSTDEV can include more than one row below the headers. When criteria includes more than one row, each row is joined with OR logic, and the expressions in a given criteria row are joined with AND logic.

Notes:

  • DSTDEV is the mean to calculate variance for a sample. If data represents the entire population, use the DSTDEVP function .
  • DSTDEV supports wildcards in criteria.
  • Criteria can include more than one row (as explained above).
  • The field argument can be supplied as a name in double quotes ("") or as a number representing field index.
  • The database and criteria ranges must include matching headers.