Yes, you read the title of this post correctly, you can calculate the median and lots of other functions in Excel PivotTables besides the regular options.

If you’re a regular user of Excel PivotTables you might know you can change the summary function:

Just right-click inside of the PivotTable → Go to Summarize Values By → Select the summary function

Right click to change summary function in PivotTables
Change summary function in PivotTable

If you click on More Options…, you can select other functions such as Standard Deviation and CountNumbers. But, what if you need something different such as the median? That’s when Power Pivot comes into play.

Power Pivot is an Excel built-in feature (for Excel 2013 and later) that allows you to significantly extend the capabilities of regular PivotTables. For example, with Power Pivot you can use information from multiple tables without having to join it into a single table. Also, you can use lots of summary functions that are not available in regular PivotTables (e.g. Median). Note: The median function is only available in Power Pivot for Excel 2016.

Check this 5 min video below to get more information about Power Pivot

To show how to calculate the median (or another measure) in PivotTables, I’ll use a sample dataset that contains shipping data. The dataset contains the following columns:

  • Order Number: ID of the order
  • Distribution Center: Location from where the order is shipped
  • Quantity: Number of items shipped in the order
  • Order Date: Date when the order was placed by the customer
  • Delivery Date: Date when the order was delivered to the customer

Download Data

Download the raw data from this link.

How to add the median to a PivotTable

The process to calculate the median (or any other function) in PivotTables is as follows:

Add a measure to a Power Pivot Data Model
Create a measure in Power Pivot

» Activate Power Pivot

  1. The activation of Power Pivot must be done once. These are the steps to do it:
    • Go to File → Options → Add-ins
    • Then select COM Add ins from the drop down and click on Go
      How to activate PowerPivot in MS Excel
      Enable PowerPivot in Excel
    • Check the checkbox for Microsoft Power Pivot for Excel and click OK
      Check box to activate Power Pivot in Excel
      Check box to activate Power Pivot in Excel

» Load the data into Power Pivot

  1. Place the cursor on any cell within the range that contains the data
  2. Go to Insert → PivotTable
    Insert PivotTable in Excel
    Insert Pivot Table
  3. Make sure the range selected is appropriate and check on Add this data to the Data Model.
  4. Click OK.
    Add source data to Excel Data Model when creating PivotTable
    Add data to Excel Data Model
    Note: If you’re importing the data from an Excel Table, the Data Model will use the table’s name, otherwise, it will use the name Range for the table. Keep this in mind as it is import for the second example of this post.

» Create the desired measure

    1. Go to the Power Pivot tab → Click on Measures → New Measure
    2. Specify the name of the measure (e.g. Median Quantity)
    3. Enter the formula for the measure. For example, to calculate the median of a column called QUANTITY, enter the formula =MEDIAN([QUANTITY]). Notice the use of brackets to refer to columns.
      Inserting median in Power Pivot Measures dialog box
      Create a measure with the median

In addition, you can specify the name of the table where the measure will be stored and a description for the measure.

» Use the measure in a PivotTable

  1. You can drag the desired fields and the measure to the PivotTable.

For example, the image below shows a PivotTable with the column Distribution Center in the rows area and the measure Median Quantity in the values area.

Add median to Pivot Table
Add median to Pivot Table

Calculate the median from row-wise operations

Let’s say you want to calculate the median of the number of days passed from the Order Date to the Delivery Date. This date difference is called leadtime.

There are two ways of doing this:

  1. Create a Leadtime column in the table and then calculate the median of the Leadtime column
  2. Use the function MEDIANX to calculate the leadtime and the median in a single formula

I’ll explain how to use MEDIANX:

All Power Pivot functions ending in X are iterators. Iterator functions can perform an operation for each row of a table.

In general, the syntax for an iterator is:

=FUNCTIONNAMEX(Table, Operation)

In this case, we want to subtract the Order Date from the Delivery Date for each row of the table called Range and then we want to calculate the median of those results.

Therefore, the syntax would be:

=MEDIANX(Range, Range[Delivery Date] – Range[Order Date])

Challenge

Here’s a tough challenge for you:

Let’s say there’s a target of having a leadtime (delivery date – order date) of 15 days or less. How would you calculate the percent of orders that had a leadtime greater than 15 days for each of the distribution centers?

The PivotTable should look like this:

Pivot Table with proportion of late orders
Pivot Table with proportion of late orders

If we pick distribution center B, 94.8% of the orders had a leadtime greater than 15 days.

HINT: Read about these Power Pivot functions: COUNTX, AVERAGEX, IF, COUNTROWS, FILTER, BLANK. You don’t need to use all of them to answer the question.

Write your solution in the comments section. By October 15, I’ll share a workbook with all the solutions posted and the names of the people who posted.

 

Please share this post so more people can benefit!

Newsletter

Stay up to date with our latest news, receive exclusive deals, and more.

© Master Data Analysis All Rights Reserved 2024