0Pricing
Excel Formulas Academy · Lesson

Averaging and Extracting With DAVERAGE and DGET

Average matching records and pull a single matching value.

Two More D-Functions

This lesson covers two final database functions:

  • DAVERAGE - the average of a numeric field for matching records.
  • DGET - pulls a single value from the one row that matches your criteria.

Both reuse the same (database, field, criteria) pattern you already know, so you are mostly learning what they return, not new syntax.

DAVERAGE Syntax

DAVERAGE(database, field, criteria) takes the mean of the field column across rows that match the criteria range.

  • database - full table with headers.
  • field - a numeric column to average.
  • criteria - the matching rules block.

It is like AVERAGEIFS, but reads conditions from cells.

=DAVERAGE(A1:C13, "Amount", E1:E2)

All lessons in this course

  1. Setting Up a Criteria Range
  2. Summing Records With DSUM
  3. Counting Records With DCOUNT
  4. Averaging and Extracting With DAVERAGE and DGET
← Back to Excel Formulas Academy