logo
excelfunctions.org
bookmarks

DMIN

Returns the minimum value from selected database entries.

DatabaseDatabase & Lists

What it does

Finds the smallest number in a database column that matches criteria.

Syntax

DMIN(database, field, criteria)

Arguments

  • database(range) β€” The database range.
  • field(text) β€” The column label.
  • criteria(range) β€” The criteria range.

Examples

Min Cost

Find min cost for 'Parts'.

FORMULA
=DMIN(A1:B5, "Cost", D1:D2)
RESULT
50
SAMPLE DATA
ABCD
1TypeCostType
2Parts100
3Service200
4Parts50
5Parts150
6Parts