Returns the largest number in a column of a list or database that matches specified conditions.
この関数は Google スプレッドシートでも Excel と同じように機能します。構文も引数も同じです。
DMAX(database, field, criteria)The DMAX function searches through a database range to find the maximum value in a specific field. It only considers rows that meet the criteria defined in a separate range of cells.
=DMAX(A1:C10, "Sales", E1:E2)結果: 5000
Finds the maximum value in the 'Sales' column for rows matching the criteria in E1:E2.
Yes, you can add more rows or columns to your criteria range to filter by multiple conditions.