Purpose

Return value

Syntax

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

Using the DAVERAGE function

The Excel DAVERAGE function gets the average in a given field for a subset of records that match criteria. The database argument is a range of cells that includes field headers, field is the name or index of the field to get a max value from, and criteria is a range of cells with headers that match those in database.

Using the example above, you can get the average value from the field “Price” for records where the color is “red” and quantity is > 2 with these formulas:

=DAVERAGE(B7:E14,"Price",B4:E5) // field by name
=DAVERAGE(B7:E14,2,B4:E5) // 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 a little different wildcards with COUNTIFS, SUMIFS, MATCH etc. For example, the pattern ??? will match strings with 3 exactly characters in these more recent functions, but not in database functions. If you are using wildcards, test carefully.

Multi-row criteria

The criteria range for DAVERAGE 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:

  • DAVERAGE 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

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

Using the DCOUNT function

The Excel DCOUNT function counts matching records in a database using a specified field and criteria. The database argument is a range of cells that includes field headers, field is the name or index of the field to count, and criteria is a range of cells with headers matching those in database.

Using the example above, you can count records where the color is “red” and price is > 10 with these formulas:

=DCOUNT(B7:E14,"Total",B4:E5) // field by name
=DCOUNT(B7:E14,4,B4:E5) // field by index
=DCOUNT(B7:E14,,B4:E5) // field omitted

Caution: if field is provided to the DCOUNT function, it is only counted when non-blank and numeric. If field contains a text value, or if the field is blank, it will not be counted, even when criteria match.

Criteria options

The criteria can include a variety of expressions. 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

The criteria range for DCOUNT 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:

  • DCOUNT will only count numeric values in the given field when criteria match. To count either numbers or text, use DCOUNTA .
  • DCOUNT supports wildcards in criteria, the support is not as good as in more modern functions like COUNTIFS .
  • 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.