Excel 2016 PivotTable MDX Changes Lead To Big Query Performance Gains

Yesterday, the Excel team announced a bunch of performance improvements in Excel 2016 for PivotTables connected to Analysis Services (Multidimensional or Tabular), Power Pivot and Power BI. If you haven’t read the official blog post already, here it is:

https://blogs.office.com/2016/07/07/faster-olap-pivottables-in-excel-2016/

In that post, Microsoft point out that how much of a performance increase you get will depend on a number of factors. I guess they have to do this to manage expectations. However I’m going to come right out and say that these changes are probably the most important thing that has happened in the last five years for Analysis Services or Power Pivot query performance and if you are using Excel PivotTables with SSAS or Power Pivot for reporting, you should upgrade to Excel 2016 (you’ll need the Office 365 click-to-run version) just for these changes.

The key improvement that Microsoft have made here is to stop Excel bringing back unnecessary subtotal values in the MDX queries that it generates. This has been a gigantic problem for years and several people have blogged about it: I did here, and among other people Rui Quintino and Richard Lees have posts on the subject that are worth reading. A lot of my consultancy work involves SSAS and MDX performance tuning and I think I see around five to ten customers every year who are seriously affected by this – and I’m sure this is just the tip of the iceberg. Even if you don’t think you are affected, you may have users who are putting up with slow refresh times for Excel-based reports without your knowledge.

Let’s go into some technical detail, see what the original problem was and what has changed in Excel 2016. I’m going to provide some examples using Excel 2013/2016 against SSAS Multidimensional but as I said the same problems occur (although less severely) with SSAS Tabular and Power Pivot.

Consider the following Excel 2013 PivotTable connected to the Adventure Works cube:

image
image

It’s typical of the kind of thing an end user wants to build, and there are two things to point out:

  1. Notice there are three fields that have been placed on the Rows axis of the PivotTable: the Gender and Marital Status hierarchies from the Customer dimension, and the Category hierarchy from the Product dimension. It’s pretty common for users to put many more fields together on an axis when they want to display detailed data.
  2. The user has also turned off grand totals and subtotals in the PivotTable so that only the detailed data is shown. This often happens in combination with (1) because if the user only wants to see the detailed data the subtotals and grand totals are a distraction.

In this case the PivotTable layout has been switched Tabular and the Repeat All Item Labels option is selected to make the PivotTable look like a table, but these are just aesthetic changes.

This PivotTable contains 12 rows, but if you look at the MDX query that is generated by Excel 2013 to populate it, it returns 36 rows of data (actually the MDX in this case returns 36 columns, but that’s a quirk of Excel) because the subtotals and grand total that Excel is not displaying are still being returned. Here’s the query:

SELECT 
NON EMPTY 
CrossJoin(
CrossJoin(
Hierarchize(
{DrilldownLevel(
{[Customer].[Gender].[All Customers]}
,,,INCLUDE_CALC_MEMBERS)}), 
Hierarchize(
{DrilldownLevel({[Customer].[Marital Status].[All Customers]}
,,,INCLUDE_CALC_MEMBERS)})), 
Hierarchize(
{DrilldownLevel({[Product].[Category].[All Products]}
,,,INCLUDE_CALC_MEMBERS)})) 
DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
ON COLUMNS  
FROM 
[Adventure Works] 
WHERE ([Measures].[Internet Sales Amount]) 
CELL PROPERTIES VALUE, FORMAT_STRING, 
LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS

And here’s a sample of what it returns, with the unwanted values highlighted:

image

You can probably guess that these unwanted subtotals and grand totals make the query slower, and the more fields you put together on the rows or columns of a PivotTable the greater the number of subtotals/grand totals are returned and slower things get. PivotTables connected to SSAS or Power Pivot often become completely unusable with more than six or seven fields put together on the same axis, and the only workarounds before Excel 2016 are either to write custom MDX in a named set (I show how to do this here) or if you are using SSAS Multidimensional try to use member properties instead of separate fields (as Richard Lees shows here), but neither are really great alternatives.

Building the same PivotTable using Excel 2016, however, gives the following MDX:

SELECT 
NON EMPTY 
CrossJoin(
CrossJoin(
Hierarchize(
{[Customer].[Gender].[Gender].AllMembers}), 
Hierarchize(
{[Customer].[Marital Status].[Marital Status].AllMembers})), 
Hierarchize(
{[Product].[Category].[Category].AllMembers})) 
DIMENSION PROPERTIES PARENT_UNIQUE_NAME,HIERARCHY_UNIQUE_NAME 
ON COLUMNS  FROM [Adventure Works] 
WHERE ([Measures].[Internet Sales Amount]) 
CELL PROPERTIES VALUE, FORMAT_STRING, 
LANGUAGE, BACK_COLOR, FORE_COLOR, FONT_FLAGS

Which returns just the data needed for the PivotTable:

image

What has changed? Focusing on just the Gender hierarchy, the difference between the two queries is that in Excel 2013 the selection on Gender is given using the DrillDownLevel() function on the All Member of the hierarchy. Isolated and put in its own query, the set expression used looks like this:

SELECT 
{[Measures].[Internet Sales Amount]}
ON COLUMNS,
DrilldownLevel(
{[Customer].[Gender].[All Customers]}
,,,INCLUDE_CALC_MEMBERS)
ON ROWS
FROM
[Adventure Works]
image

Notice how the All Member, used by Excel to return subtotals and grand totals, is returned by the set. Excel 2016 instead just asks for the members on the Gender level of the Gender hierarchy, not including the All Member. Again, put inside its own query, you can see what it returns:

SELECT 
{[Measures].[Internet Sales Amount]}
ON COLUMNS,
{[Customer].[Gender].[Gender].AllMembers}
ON ROWS
FROM
[Adventure Works]
image

Apart from the fact that no All Member is returned, it’s also a lot cleaner and easier to read.

I’ve been very excited about this change since I first heard it was happening, and I think it will benefit a lot of people. A big thanks to Alexander Lahuerta and the rest of the Excel team for making this happen!

27 thoughts on “Excel 2016 PivotTable MDX Changes Lead To Big Query Performance Gains

  1. Richard Lees complained:
    “The reason it takes so long is that the MDX is asking for a crossjoin of all the attributes, at all levels.”

    From your post I suggest It’s fixed. Am I right? Because my customer annoyed me with this performance issue. If it’s indeed fixed I has to the greatest news to me since past year!

    1. That’s just another way of saying what I describe in this post, so yes, it’s fixed. But remember you need the Office 365 click-to-run version of Excel 2016.

      1. Chris, are there any way of getting such performance gain without click-to-run version? We are not able to use any software suscriptions here, including office 365 subscription..

  2. Very good news indeed, especially when you consider that Power Pivot/Data Model improvements come at the pace of a turtle on a snail’s back. Bi-directional cross-filtering in the data model is already a year late, with no horizon in sight! Another two years and we might get a useful list of Quick-calcs.

    1. To be fair, I believe that part of the problem is that Excel has to maintain backwards compatibility whereas Power BI does not – an Excel 2016 workbook has to open and work (or at least not crash) in Excel 2013, and some features need a lot of extra work for that to happen.

  3. Chris, backward compatibility was the given reason for the delay in the cross-filtering functionality, but there was no indication that the functionality would not be possible. I accepted that there would be a delay, but not this long. Oh well, I suppose that it’s just as well that when we use DAX’s CROSSFILTER, it’s a deliberate, conscious decision, vs. possible indiscriminate use at the data model level.

  4. I am not able to view the changes. I am on Excel Version:16.0.7070.2026. Am I missing anything?

    1. Okay i didn’t turn off the grand total. Turning off does show the optimize query. Saying that If i do want the grand total and no sub-total, it looks like there will not be any improvement..

  5. Yeah, as Thakks mentioned that’s not useful. I’m confirming. Users need that as default behavior. They don’t understand why things must go faster within MDX, they mostly don’t care about MDX and querying. They want do analysis fast and smoothly. Saying that that’s not a great improvement and we still be looking for better alternatives.

    Thanks for highlight though!

  6. There is no update for Excel 2013? We have a heterogenic environment with Excel 2013 and 2016. Due to some changes (which?) in the Tabular the Excel 2013 stopped working but the Excel 2016 (with the latest updates : 16.0.6965.2150) works. An older version of Excel 2016 (as with Excel 2013) didn’t work as it kept saying “Running OLAP query… (Press ESC to cancel)….”. So it seems that the latest update of office 365 updates the connector to the Tabular ?!?! Are you familiar with this behavior..

    1. No, I don’t think this change will make it into Excel 2013. You should try to find out why Excel 2013 has stopped working – it sounds like the query that Excel is generating is just very slow. Maybe there is something you can do to tune the SSAS Tabular model?

  7. Ok thanx. It is under consideration by the developer. We restored a backup of a couple of versions earlier and see where the problems starts when adding/changing the cube…

  8. I’m using Excel 2016 version 1710 (Build 8625.2121 Click-To-Run), with a simple pivot table on a SSAS OLAP multidimensional cube, and can not see the improvements. Any suggestions ?

Leave a Reply to cbanfieldCancel reply