Returns the largest number in a column of a list or database that matches specified conditions.
이 함수는 Google Sheets에서도 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.