Counts the number of non-empty cells in a database column that match specified conditions.
이 함수는 Google Sheets에서도 Excel과 동일하게 작동합니다 — 구문과 인수가 같습니다.
DCOUNTA(database, field, criteria)DCOUNTA counts cells that are not empty in the specified field of records that match the criteria. It is particularly useful for analyzing large datasets where you need to filter by multiple conditions before counting.
=DCOUNTA(A1:C10, "Sales", E1:F2)결과: 5
Counts the number of non-empty 'Sales' entries in the database that meet the criteria defined in E1:F2.
DCOUNT counts only numeric cells, while DCOUNTA counts any non-empty cell, including text.