
The Excel DCOUNT function counts matching records in a database using criteria and an optional field. When a field is provided DCOUNT will only count numeric values in the field. Use DCOUNTA to count numbers or text values in a given field.
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 provide 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.
The criteria can include a variety of expressions. The table below shows some examples:
| Criteria | Behavior |
|---|---|
| Red | Match "red" or "RED" |
| Re* | Begins with "re" |
| 10 | Equal to 10 |
| >10 | Greater than 10 |
| <> | Not blank |
| <>100 | Not 100 |
| >12/19/2017 | Greater 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:

The Excel DCOUNT function counts matching records in a database using criteria and an optional field. When a field is provided DCOUNT will only count numeric values in the field. Use DCOUNTA to count numbers or text values in a given field.
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 provide 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.
The criteria can include a variety of expressions. The table below shows some examples:
| Criteria | Behavior |
|---|---|
| Red | Match "red" or "RED" |
| Re* | Begins with "re" |
| 10 | Equal to 10 |
| >10 | Greater than 10 |
| <> | Not blank |
| <>100 | Not 100 |
| >12/19/2017 | Greater 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: