logo
excelfunctions.org
bookmarks

DSUM

Adds the numbers in the field column of records in the database that match the criteria.

DatabaseDatabase & Lists

What it does

Sums numbers in a database column that match criteria.

Syntax

DSUM(database, field, criteria)

Arguments

  • database(range) β€” Database range.
  • field(text) β€” Column to sum.
  • criteria(range) β€” Criteria range.

Examples

Database Sum

Sum Sales where Region='East'.

FORMULA
=DSUM(A1:B5, "Sales", D1:D2)
RESULT
300
SAMPLE DATA
ABCD
1RegionSalesRegion
2East100
3West200
4East200
5North50
6East