Dapatkan min dari catatan yang cocok
=DMIN(database, field, criteria)
| Parameter | Deskripsi |
|---|---|
database |
Database range including headers. |
field |
Field name or index to count. |
criteria |
Criteria range including headers. |
Using the example above, you can get the minimum value from the field "Price" for records where the color is "Red" and Quantity is > 2 with these form
=DMIN(B7:E14,"Price",B4:E5) // field by name
=DMIN(B7:E14,2,B4:E5) // field by index