Dapatkan rata-rata dari catatan yang cocok
=DAVERAGE(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 average value from the field "Price" for records where the color is "red" and quantity is > 2 with these form
=DAVERAGE(B7:E14,"Price",B4:E5) // field by name
=DAVERAGE(B7:E14,2,B4:E5) // field by index