How to calculate Average by Month in Excel

To calculate the average by month in Excel, you must first create a pivot table. Then, select the data fields that you want to include in the table, and drag the month field to the row labels section. Finally, use the Average function in the Values area of the table to calculate the average of the data for each month.


Often you may want to calculate the average value grouped by month in Excel.

For example, suppose we have the following dataset and we’d like to calculate the average daily sales, grouped by month:

The following step-by-step example shows how to do so.

Step 1: Enter the Data

First, enter the data values into Excel:

Step 2: Extract the Month from Dates

Next, we need to use the =MONTH() function to extract the month from each date.

In our example, we’ll type the following formula in cell D2:

=MONTH(A2)

We’ll then drag and fill this formula down to every remaining cell in column D:

Step 3: Find the Unique Months

Next, we need to use the =UNIQUE() function to produce a list of unique months.

In our example, we’ll type the following formula in cell F2:

=UNIQUE(D2:D10)

Step 4: Calculate the Average by Month

Next, we will use the AVERAGEIF(range, criterion, average_range) function to find the average of the daily sales values, grouped by month.

In our example, we’ll type the following formula in cell G2:

=AVERAGEIF($D$2:$D$10, F2, $B$2:$B$10)

We’ll then drag and fill this formula down to the remaining cells in column G:

Excel average by month

This tells us:

  • The average daily sales value in January was 39.
  • The average daily sales value in February was 25.
  • The average daily sales value in March was 27.75.

x