Chapter 9
Using cube formulas with the Data Model or OLAP data

In this chapter, you will:

There is a great technique with pivot tables where you convert the pivot table to a series of cube formulas. Originally, this technique was only relevant for someone who had SQL Service Analysis Services installed. But today, one click on Add This Data To The Data Model moves your data set to the Power Pivot engine, and Power Pivot stores data in an OLAP engine. Thus, you can use cube formulas simply by moving your data to the Data Model.

I have some non-scientific rationale: If I am doing one of my Power Excel seminars and there are 100 people in the room who use pivot tables, only three to five of those people have ever heard of SQL Server Analysis Services. I have been the co-author of this book for 15 years and six editions. When this chapter was about OLAP tools, I skipped over it every time because I knew that I did not have SQL Server Analysis Services installed.

So, I am changing the focus of the chapter to start with the cube formulas that everyone can use if you simply select the check box for Add This Data To The Data Model.

If you have Excel 2013 or newer on a Windows computer, you can use the examples in the first section of this chapter. After seeing how cool cube formulas are, you are free to skip to Chapter 10 once you get to the OLAP material

Converting your pivot table to cube formulas

You might have encountered the GETPIVOTDATA function as a way to extract cells from a pivot table based on a pivot cache. Cube formulas are a more powerful function that only work when the pivot table is based on an OLAP cube. When you select the check box to Add This Data To The Data Model, Excel is converting your data to a cube. Thus, the cube formulas will work.

Why are cube formulas more powerful? The GETPIVOTDATA function refers to an existing pivot table and extracts cells that already exist in the pivot table to another location. In contrast, cube formulas can completely replace a pivot table. Cube formulas reach into the data store and pull summary data into Excel even if you don’t have that data in a pivot table yet.

The easiest way to get started with cube formulas is to let Excel convert an existing pivot table to cube formulas.

Before you get started with your pivot table, format the underlying data with Ctrl+T. Excel uses a name such as Table1. It is important to edit that name before you begin. You will be typing this name frequently, so make the name meaningful but short. For this example, I will use the name CustData.

Select one cell in your data. Insert, PivotTable. Choose Add This Data To The Data Model and click OK. Build a pivot table with Customers in the Rows, Revenue in the Values, and Sector as a Slicer (see Figure 9-1).

This figure shows a pivot table with revenue by customer.
FIGURE 9-1 Start with a pivot table based on the Data Model.

With one cell in the pivot table selected, go to the Analysis tab in the ribbon. Select OLAP Tools, Convert To Formulas, as shown in Figure 9-2.

The OLAP Tools drop-down menu is near the right side of the Analyze tab of the ribbon.
FIGURE 9-2 Excel offers to convert your pivot table to cube formulas.

Your entire pivot table is replaced with a series of stand-alone formulas. The pivot table no longer exists. The CUBEVALUE and CUBEMEMBER formulas are reaching into the Data Model to retrieve summary results (see Figure 9-3).

The data that used to be in the pivot table is still there, but it is coming from a series of formulas.
FIGURE 9-3 The former pivot table is converted to a series of formulas.

These formulas are stand-alone formulas. You can rearrange them. If you ever wanted to insert blank rows in your pivot table, you can do it now; there are no pivot table limitations on this report because it is no longer a pivot table.

If you need to grab just the Boeing revenue and put it in a dashboard, you can use one single CUBEVALUE formula to do that.

The primary cube function is CUBEVALUE. The syntax requires the name of the connection and then a series of member_expressions. For pivot tables based on the Data Model, the connection name is always “ThisWorkbookDataModel.”

For the member_expressions, the formula in B4 is pointing to ABC Stores in A4, the words “Sum Of Revenue” in B3 and the name of the slicer: Slicer_Sector. Had there been more slicers associated with the pivot table, there would have been additional member_expressions for each slicer.

The formula in B4 is as follows:

=CUBEVALUE("ThisWorkbookDataModel",$A4,B$3,Slicer_Sector)

You need to be particularly careful with this point: The formula is pointing to A4, which appears to contain the words “ABC Stores.” But it is not using the text that we can see in cell A4. In fact, if you would change the formula to the following:

=CUBEVALUE("ThisWorkbookDataModel","ABC Stores",B$3,Slicer_Sector)

it would stop working. The CUBEVALUE formula is making use of the actual formula text in A4 and B3. Those cells contain CUBEMEMBER functions.

The syntax is:

CUBEMEMBER(Connection, Member_Expression, [Caption])

The formula to return the words “Sum Of Revenue” to cell B3 is the following:

=CUBEMEMBER("ThisWorkbookDataModel","[Measures].[Sum of Revenue]")

The optional caption argument allows you to display something different in the cell other than the words “Sum Of Revenue.” For example, if you wanted to put the word “Revenue” in the cell, you could use a caption of “Revenue.” Regular pivot tables would not let you reuse the word revenue, but it is not a problem here.

So far, everything is great. But the next part of the results of Convert To Cube Formulas is going to be a problem down the road. For the customer name cells in A4 to A30, Excel created formulas like this:

=CUBEMEMBER("ThisWorkbookDataModel","[CustData].[Customer].&[ABC Stores]")

Hard-coding the customer name in the formula is not efficient. Customers are going to come and go. Next year, ABC Stores might not even be a customer. And other customers will appear.

You don’t have to wait for the underlying data to change in order to be disappointed. If you choose Manufacturing from the Slicer, the CUBEVALUE formulas in column B update to show only manufacturing results. But the list of customers in column A does not change, leaving a bunch of empty cells in column B (see Figure 9-4).

The slicer is set to the Manufacturing sector. You have the same list of customers in column A. If the customer is in the Manufacturing sector, the revenue appears in column B. For all the other cells, column B appears to be empty.
FIGURE 9-4 Choose from the slicer. The formulas in B4:B30 update correctly, but the list of customers in A4:A30 does not update.

We are going to pull out some tricks to make these cube formulas more robust. The first is from Rob Collie at PowerPivotPro.com. As Rob explains the CUBESET function:

The CUBESET function is useless by itself. It can return a list of all the customers in the underlying data set. It won’t display those customers for you, but it forms the basis that allow later formulas to list those customers. Here is the syntax:

CUBESET(connection, set_expression, [caption], [sort_order], [sort_by])

Figure 9-5 shows the formula returning a caption of "All Customers." The formula is as follows:

Cell E3 contains the caption of All Customers because that was the caption specified in the third argument of the formula.
FIGURE 9-5 The cell reads “All Customers,” but it actually contains a pointer to the complete set of customers.

=CUBESET("ThisWorkbookDataModel",
         "[CustData].[Customer].children",
         "All Customers",
         2,
         "[Measures].[Sum of Revenue]")

At this point, cell E3 contains a list of all customers, but you can’t see them. You can use CUBERANKEDMEMBER to extract those customers to cells in the worksheet.

To get the first customer, you would use the following:

=CUBERANKEDMEMBER("ThisWorkbookDataModel",$E$3,1)

The 1 as the third argument says that you want the first customer from the set stored in E3. Writing 1 is very clear, but it will be inefficient to copy the formula for the other customers. Switch the 1 to ROW(1:1). This reference will automatically change to ROW(2:2), ROW(3:3) as you copy the formula down the worksheet.

Use this formula in E5:

=CUBERANKEDMEMBER("ThisWorkbookDataModel",$E$3,ROW(1:1))

You have 27 customers today, so copy the formula down to more than 27 rows. That way, if someone adds a new customer, the formulas will pick up that customer.

To save space in the figure, rows 11 through 30 have been hidden in Figure 9-6. You will see that after the final customer, the remaining cells show up as #N/A. You can correct this later with the IFNA function.

The formulas in E5:E35 return the list of customers retrieved by CUBESET.
FIGURE 9-6 The CUBERANKEDMEMBER retrieves the customers from the set in E3.

It is time to return to the CUBEVALUE function from Figure 9-3. But this time, instead of referring to the customer names in column A, refer to the customer names in column E. Use this formula in F5 and copy down:

=CUBEVALUE("ThisWorkbookDataModel",$E5,B$3,Slicer_Sector)

The result is a series of formulas that retrieve data from the Data Model as shown in Figure 9-7.

A list of customers in E and the revenue in F.
Figure 9-7 This solution is more robust than the original formulas created by Excel.

There is some cleanup to do.

The CUBEVALUE formula in Figure 9-7 is still referring to the Sum Of Revenue cell back in B$3. Cut that cell and paste to F1. Add an extra argument to change the caption to “Revenue.”

Wrap all of the formulas in the =IFNA( , "") function so that #N/A errors do not appear.

I am performing the following steps to demonstrate how this is all working:

  1. I am adding $150,000 to Cummins Inc. to move them into the #2 position.

  2. I inserted a new row in the original data table with a $575,000 sale to a new company Venkman Industries.

  3. Click Refresh All on the Data tab of the ribbon.

As shown in Figure 9-8, the Cube formulas update and you have a new report.

After a refresh, the customers are automatically sorted into the new sequence.
FIGURE 9-8 Use Refresh All on the Data tab to pick up any changes in the underlying data.

Before you think everything is perfect, go back to your slicer and choose Manufacturing. The numbers update, but the CUBESET is still returning all customers whether they are manufacturing or not as shown in Figure 9-9.

The slicer is set to Manufacturing customers. In the report, all customers are shown, but only the manufacturing customers have revenue next to them.
Figure 9-9 The formulas update, but the non-manufacturing customers remain.

There are three paths at this point. First, you could use the new SORTBY and FILTER modern array functions to extract only the customers with revenue as shown in Figure 9-10. This is easy, provided everyone who will use the workbook has Office 365. But, it is currently wonky, in that the array formulas don’t see the change in the Data Model. After every Refresh All, you have to edit the array formula and press Enter. I’ve reported this bug to Joe McDaid, but I really expect Joe to report back that this is by design and that it will take a while before it is fixed.

A FILTER function keeps just the manufacturing customers.
FIGURE 9-10 The new FILTER function prevents you from having to dive into the MDX.

The second path is to dive into MDX. Former Excel PM Dany Hoter is the world’s expert on this and provided an example that I will include with the downloads for this book. It is ugly, complicated, and requires a bunch of helper cells.

I have massive respect for both Dany and Joe. But I am hoping for Joe to correct the issue and then the modern array formulas will save the day.

The cube functions in collaboration with a Data Model pivot table open an interesting set of possibilities for reusing pivot table data in dashboards and other reports.

The rest of this chapter dives into OLAP and SQL Server Analysis Services.

Introduction to OLAP

Online analytical processing (OLAP) is a category of data warehousing that enables you to mine and analyze vast amounts of data with ease and efficiency. Unlike other types of databases, OLAP databases are designed specifically for reporting and data mining. In fact, there are several key differences between standard transactional databases, such as Access and SQL Server, and OLAP databases.

Records within a transactional database are routinely added, deleted, and updated. OLAP databases, on the other hand, contain only snapshots of data. The data in an OLAP database is typically archived data, stored solely for reporting purposes. Although new data may be appended on a regular basis, existing data is rarely edited or deleted.

Another difference between transactional databases and OLAP databases is structure. Transactional databases typically contain many tables; each table usually contains multiple relationships with other tables. Indeed, some transactional databases contain so many tables that it can be difficult to determine how each table relates to another.

In an OLAP database, however, all the relationships between the various data points have been predefined and stored in OLAP cubes. These cubes already contain the relationships and hierarchies you need to easily navigate the data within. Consequently, you can build reports without needing to know how the data tables relate to one another.

The biggest difference between OLAP and transactional databases is the way the data is stored. The data in an OLAP cube is rarely stored in raw form. OLAP cubes typically store data in views that are already organized and aggregated; that is, grouping, sorting, and aggregations are predefined and ready to use. This makes querying and browsing for data far more efficient than in a transactional database, where you have to group, aggregate, and sort records on the fly.

Image Note

An OLAP database is typically set up and maintained by the database administrator in your IT department. If your organization does not utilize OLAP databases, you might want to speak with your database administrator about the possibility of using some OLAP reporting solutions.

Connecting to an OLAP cube

Before you can browse OLAP data, you must establish a connection to an OLAP cube. Start on the Data tab and select Get Data, From Database, From Analysis Services (see Figure 9-11).

Get Data, From Database, From Analysis Services menu is shown.
Figure 9-11 Select the Data Connection Wizard.

Selecting this option activates the Data Connection Wizard, shown in Figure 9-12. The idea here is that you configure your connection settings so Excel can establish a link to the server. Here are the steps to follow:

Enter your server name and click Next.
FIGURE 9-12 Enter your authentication information and click Next.

Image Note

The examples in this chapter have been created using the Analysis Services Tutorial cube that comes with SQL Server Analysis Services 2017. The actions you take to connect to and work with your OLAP database are the same as demonstrated here because the concepts are applicable to any OLAP cube you are using.

  1. Provide Excel with authentication information. Enter the name of your server as well as your username and password, as demonstrated in Figure 9-12. Click Next.

Image Note

If you are typically authenticated via Windows Authentication, you simply select the Use Windows Authentication option.

  1. Select the database with which you are working from the drop-down menu. As Figure 9-13 illustrates, the Analysis Services Tutorial database is selected for this scenario. Selecting this database causes all the available OLAP cubes to be exposed in the list of objects below the drop-down menu. Choose the cube you want to analyze and then click Next.

    Here you will select the database and table. For this example, you are using the Analysis Services Tutorial.
    FIGURE 9-13 Specify your database and then choose the OLAP cube you want to analyze.
  1. On the next screen, shown in Figure 9-14, enter some descriptive information about the connection you’ve just created.

    The wizard displays Save Data Connection File And Finish. You can optionally enter a description here.
    FIGURE 9-14 Edit descriptive information for your connection.

Image Note

All the fields in the screen shown in Figure 9-14 are optional. That is, you can bypass this screen without editing anything, and your connection will work fine.

  1. Click the Finish button to finalize your connection settings. You immediately see the Import Data dialog box, as shown in Figure 9-15.

    In the Import Data dialog box, choose Pivot Table and then click OK.
    FIGURE 9-15 When your connection is finalized, you can start building your pivot table.
  2. In the Import Data dialog box, select PivotTable Report and then click the OK button to start building your pivot table.

Understanding the structure of an OLAP cube

When a pivot table is created, you might notice that the PivotTable Fields list looks somewhat different from that of a standard pivot table. The reason is that the PivotTable Fields list for an OLAP pivot table is arranged to represent the structure of the OLAP cube you are connected to.

To effectively browse an OLAP cube, you need to understand the component parts of OLAP cubes and the way they interact with one another. Figure 9-16 illustrates the basic structure of a typical OLAP cube.

The OLAP cube has a Products dimension. Below that is a Product Category hierarchy.
Figure 9-16 The basic structure of an OLAP cube.

As you can see, the main components of an OLAP cube are dimensions, hierarchies, levels, members, and measures:

Now that you understand how the data in an OLAP cube is structured, take a look at the PivotTable Fields list in Figure 9-17, and the arrangement of the available fields should begin to make sense.

The PivotTable Fields panel offers measures next to the Sigma logo: Discount Amount, Internet Sales Count, Order Quantity, and more. Text fields along the Product dimension are Class, Color, and so on.
Figure 9-17 The PivotTable Fields list for an OLAP pivot table.

As you can see, the measures are listed first under the Sigma icon. These are the only items you can drop in the Values area of the pivot table. Next, you see dimensions represented next to the table icon. In this example, you see the Product dimension. Under the Product dimension, you see the Product Categories hierarchy that can be drilled into. Drilling into the Product Categories hierarchy enables you to see the individual levels.

The cool thing is that you can browse the entire cube structure by simply navigating through your PivotTable Fields list! From here, you can build your OLAP pivot table report just as you would build a standard pivot table.

Understanding the limitations of OLAP pivot tables

When working with OLAP pivot tables, you must remember that the source data is maintained and controlled in the Analysis Services OLAP environment. This means that every aspect of the cube’s behavior—from the dimensions and measures included in the cube to the ability to drill into the details of a dimension—is controlled via Analysis Services. This reality translates into some limitations on the actions you can take with your OLAP pivot tables.

When your pivot table report is based on an OLAP data source, keep in mind the following:

Creating an offline cube

With a standard pivot table, the source data is typically stored on your local drive. This way, you can work with and analyze your data while you’re disconnected from the network. However, this is not the case with OLAP pivot tables. With an OLAP pivot table, the pivot cache is never brought to your local drive. This means that while you are disconnected from the network, your pivot table is out of commission. You can’t even move a field while disconnected.

If you need to analyze your OLAP data while disconnected from your network, you need to create an offline cube. An offline cube is essentially a file that acts as a pivot cache, locally storing OLAP data so that you can browse that data while disconnected from the network.

To create an offline cube, start with an OLAP-based pivot table. Place your cursor anywhere inside the pivot table and click the OLAP Tools drop-down menu button on the PivotTable Tools Analyze tab. Then select Offline OLAP, as shown in Figure 9-18.

Select the Analyze tab, then OLAP Tools, then Offline OLAP to create a local copy of the data.
FIGURE 9-18 Select the Offline OLAP option to start the creation of an offline cube.

Selecting this option activates the Offline OLAP Settings dialog box (see Figure 9-19), where you click the Create Offline Data File button. The Create Cube File wizard shown in Figure 9-19 appears. Click Next to start the process.

The Offline OLAP Settings dialog box offers a button to Create Offline Data File.
Figure 9-19 Start the Create Cube File wizard.

As you can see in Figure 9-20, you first select the dimensions and levels you want included in your offline cube. Your selections tell Excel which data you want to import from the OLAP database. The idea is to select only the dimensions that you need available to you while you’re disconnected from the server. The more dimensions you select, the more disk space your offline cube file takes up.

In Step 2 of the Create Cube File dialog box, choose Birth Date, City, Customer Key, Date First Purchase, and Email Address.
FIGURE 9-20 Select the dimensions and level you want included in your offline cube.

Clicking Next moves you to the next dialog box, shown in Figure 9-21. Here, you are given the opportunity to filter out any members or data items you do not want included. For instance, the Extended Amount measure is not needed, so its check box has been cleared. Clearing this box ensures that this measure will not be imported and therefore will not take up unnecessary disk space.

In Step 3 of the Create Cube File dialog box, clear any fields that you don’t need.
FIGURE 9-21 Clear the check boxes for any members you do not need to see offline.

The final step is to specify a name and location for your cube file. In Figure 9-22, the cube file is named MyOfflineCube.cub, and it will be placed in a directory called c:\aaa\.

In Step 4 of the Create Cube File dialog box, choose a path and filename for the .cub file.
FIGURE 9-22 Specify a name and location for your cube file.

Image Note

The file name extension for all offline cubes is .cub.

After a few moments of crunching, Excel outputs your offline cube file to your chosen directory. To test it, simply double-click the file to automatically generate an Excel workbook that is linked to the offline cube via a pivot table.

After your offline cube file has been created, you can distribute it to others and use it while disconnected from the network.

Image Tip

When you’re connected to the network, you can open your offline cube file and refresh the pivot table within. This automatically refreshes the data in the cube file. The idea is that you can use the data within the cube file while you are disconnected from the network and can refresh the cube file while a data connection is available. Any attempt to refresh an offline cube while disconnected causes an error.

Breaking out of the pivot table mold with cube functions

Cube functions are Excel functions that can be used to access OLAP data outside a pivot table object. In pre-2010 versions of Excel, you could find cube functions only if you installed the Analysis Services add-in. In Excel 2010, cube functions were brought into the native Excel environment. To fully understand the benefit of cube functions, take a moment to walk through an example.

Exploring cube functions

One of the easiest ways to start exploring cube functions is to allow Excel to convert your OLAP-based pivot table into cube formulas. Converting a pivot table to cube formulas is a delightfully easy way to create a few cube formulas without doing any of the work yourself. The idea is to tell Excel to replace all cells in the pivot table with a formula that connects to the OLAP database. Figure 9-23 shows a pivot table connected to an OLAP database.

Before converting to cube formulas, product categories are in the rows area and years in the columns area.
FIGURE 9-23 A normal OLAP pivot table.

With just a few clicks, you can convert any OLAP pivot table into a series of cube formulas. Place the cursor anywhere inside the pivot table and click the OLAP Tools drop-down menu button on the PivotTable Tools Analyze tab. Select Convert To Formulas, as shown in Figure 9-24.

To convert the OLAP pivot table to formulas, use Analyze, OLAP Tools, Convert To Formulas.
FIGURE 9-24 Select the Convert To Formulas option to convert your pivot table to cube formulas.

If your pivot table contains a report filter field, the dialog box shown in Figure 9-25 appears. This dialog box gives you the option of converting your filter drop-down selectors to cube formulas. If you select this option, the drop-down selectors are removed, leaving a static formula. If you need to have your filter drop-down selectors intact so that you can continue to interactively change the selections in the filter field, leave the Convert Report Filters check box cleared.

In the Convert To Formulas dialog box, you have the option to convert the Report Filter to a static value.
FIGURE 9-25 Excel gives you the option of converting your report filter fields.

Image Note

If you are working with a pivot table in Compatibility mode, Excel automatically converts the filter fields to formulas.

After a second or two, the cells that used to house a pivot table are now homes for cube formulas. Note that, as shown in Figure 9-26, any styles you have applied are removed.

The worksheet looks like the same pivot table, but the numbers are now =CUBEVALUE formulas.
FIGURE 9-26 Note in the formula bar that these cells are now a series of cube formulas!

So why is this capability useful? Well, now that the values you see are no longer part of a pivot table object, you can insert rows and columns, you can add your own calculations, you can combine the data with other external data, and you can modify the report in all sorts of ways by simply moving the formulas around.

Adding calculations to OLAP pivot tables

In Excel 2010 and earlier, OLAP pivot tables were limited in that you could not build your own calculations within OLAP pivot tables. This means you could not add the extra layer of analysis provided by the calculated fields and calculated items functionality in standard pivot tables.

Image Note

Calculated fields and calculated items are covered in Chapter 5, “Performing calculations in pivot tables.” If you haven’t read it already, you might find it helpful to read that chapter first in order to build the foundation for this section.

Excel 2013 changed that with the introduction of the new OLAP tools—calculated measures and calculated members. With these two tools, you are no longer limited to just using the measures and members provided through the OLAP cube by the database administrator. You can add your own analysis by building your own calculations.

In this section, you’ll explore how to build your own calculated measures and calculated members.

Creating calculated measures

A calculated measure is essentially the OLAP version of a calculated field. When you create a calculated measure, you basically create a new data field based on some mathematical operation that uses the existing OLAP fields.

In the example shown in Figure 9-27, an OLAP pivot table contains products along with their respective quantities and revenues. Say that you want to add a new measure that calculates average sales price per unit.

Using fields from the OLAP cube, you have products in column A, Order Quantity in B, and Sales Amount in C.
FIGURE 9-27 You want to add a calculation to this OLAP pivot table to show average sales price per unit.

Place your cursor anywhere in the pivot table and select the PivotTable Tools Analyze tab. Then select MDX Calculated Measure, as shown in Figure 9-28. This activates the New Calculated Measure dialog box, shown in Figure 9-29.

MDX Calculated Measure is the fifth item in the OLAP Tools drop-down menu.
Figure 9-28 Choose the MDX Calculated Measure command.
For the Measure Name, choose Avg Sales Price. Select a Measure Group of Internet Sales. The formula is IIF([Measures].[Order Quantity] = 0, NULL, [Measures].[Sales Amount]/[Measures].[Order Quantity].
FIGURE 9-29 Use the New Calculated Measure dialog box to build your calculated measure.

In the New Calculated Measure dialog box, take the following actions:

  1. Give your calculated measure a name by entering it in the Name input box.

  2. Choose a measure group where Excel should place your calculated measure. If you don’t choose one, Excel automatically places your measure in the first available measure group.

  3. Enter the MDX syntax for your calculation in the MDX input box. To save a little time, you can use the list on the left to choose the existing measures you need for your calculation. Simply double-click the measures needed, and Excel pops them into the MDX input box. In this example, the calculation for the average sales price is:

    IIF([Measures].[Order Quantity] = 0,NULL,[Measures].[Sales Amount]/[Measures].[Order Quantity]).

  4. Click OK.

Image Tip

In the New Calculated Measure dialog box, shown in Figure 9-29, notice the Test MDX button. You can click this to ensure that the MDX you entered is well formed. Excel lets you know via a message box if your syntax contains any errors.

After you have built your calculated measure, you can go to the PivotTable Fields list and select your newly created calculation (see Figure 9-30).

The new Avg Sales Price field is available at the top of the Measures section in the PivotTable Fields panel.
FIGURE 9-30 Add your newly created calculation to your pivot table via the PivotTable Fields list.

As you can see in Figure 9-31, your calculated measure adds a meaningful layer of analysis to the pivot table.

The pivot table from Figure 9-27 now has a new Avg Sales Price column.
Figure 9-31 Your pivot table now contains your calculated measure!

Image Note

It’s important to note that when you create a calculated measure, it exists in your workbook only. In other words, you are not building your calculation directly in the OLAP cube on the server. This means no one else connected to the OLAP cube will be able to see your calculations unless you share or distribute your workbook.

Creating calculated members

A calculated member is essentially the OLAP version of a calculated item. When you create a calculated member, you basically create a new data item based on some mathematical operation that uses the existing OLAP members.

In the example shown in Figure 9-32, an OLAP pivot table contains sales information for each quarter in the year. Let’s say you want to aggregate quarters 1 and 2 into a new data item called First Half of Year. You also want to aggregate quarters 3 and 4 into a new data item called Second Half of Year.

A pivot table has quarters in A2:A5. The goal is to add subtotals for Q1+Q2 and Q3+Q4.
FIGURE 9-32 You want to add new calculated members to aggregate the four quarters into First Half of Year and Second Half of Year.

Place your cursor anywhere in the pivot table and select the PivotTable Tools Analyze tab. Then select MDX Calculated Member, as shown in Figure 9-33. The New Calculated Member dialog box opens (see Figure 9-34).

Choose MDX Calculated Member instead of a measure.
Figure 9-33 Choose the MDX Calculated Member command.
The member name is First Half of Year. The Parent Hierarchy is [Ship.Date].[Calendar.Quarter]. The Parent Member is All. The MDX formula is [Ship Date].[Calendar Quarter].[1] + [Ship Date].[Calendar Quarter].[2].
FIGURE 9-34 Use the New Calculated Member dialog box to build your calculated member.

In the New Calculated Member dialog box, take the following actions:

  1. Give your calculated member a name by entering it in the Name input box.

  2. Choose the parent hierarchy for which you are creating new members. Be sure to leave Parent Member set to All. This ensures that Excel takes into account all members in the parent hierarchy when evaluating your calculation.

  3. Enter the MDX syntax for your calculation in the MDX input box. To save a little time, you can use the list on the left to choose the existing members you need for your calculation. Simply double-click the member needed, and Excel pops them into the MDX input box. In the example in Figure 9-34, you are adding quarter 1 and quarter 2:

    [Ship Date].[Calendar Quarter].[1] + [Ship Date].[Calendar Quarter].[2].

  4. Click OK.

As soon as you click OK, Excel shows your newly created calculated member in the pivot table. As you can see in Figure 9-35, your calculated member is included with the other original members of the pivot field.

The pivot table now shows quarters 1, 2, 3, and 4 in A2:A5 followed by First Half Of Year in A6. The Grand Totals in row 7 are overstated by the total of Q1+Q2.
FIGURE 9-35 Excel immediately adds your calculated member to your pivot field.

Figure 9-36 shows how you repeat the process to calculate the Second Half Of Year member.

Build a new calculated member for Second Half of Year.
FIGURE 9-36 Repeat the process for any additional calculated members.

Notice in Figure 9-37 that Excel makes no attempt to remove any of the original members. In this case, you see that quarters 1 through 4 are still in the pivot table. This might be fine for your situation, but in most scenarios, you will likely hide these members to avoid confusion.

The pivot table from Figure 9-35 now has a new measure member Second Half of Year in row 7. The Grand Totals in row 8 are now double what they should be.
FIGURE 9-37 Excel shows your final calculated members along with the original members. It is a best practice to remove the original members to avoid confusion.

Image Note

Remember that your calculated member exists in your workbook only. No one else connected to the OLAP cube is able to see your calculations unless you share or distribute your workbook.

Image Caution

If the parent hierarchy or parent member is changed in the OLAP cube, your calculated member ceases to function. You must re-create the calculated member.

Managing OLAP calculations

Excel provides an interface for managing the calculated measures and calculated members in an OLAP pivot table. Simply place your cursor anywhere in the pivot table and select the PivotTable Tools Analyze tab. Then select Manage Calculations, as shown in Figure 9-38.

The last item in the OLAP Tools drop-down menu is Manage Calculations.
FIGURE 9-38 Activate the Manage Calculations dialog box.

The Manage Calculations dialog box, shown in Figure 9-39, appears, offering three commands:

The list of calculations includes one measure and two members.
FIGURE 9-39 The Manage Calculations dialog box enables you to create a new calculation, edit an existing calculation, or delete an existing calculation.

Performing what-if analysis with OLAP data

Another piece of functionality that Microsoft introduced in Excel 2013 is the ability to perform what-if analysis with the data in OLAP pivot tables. With this functionality, you can actually edit the values in a pivot table and recalculate your measures and members based on your changes. You even have the ability to publish your changes back to the OLAP cube.

To make use of the what-if analysis functionality, create an OLAP pivot table and then go to the PivotTable Tools Analyze tab. Once there, select What-If Analysis, Enable What-If Analysis, as shown in Figure 9-40.

In the OLAP Tools drop-down menu, choose What-If Analysis, Enable What-If Analysis.
FIGURE 9-40 Enabling what-if analysis allows you to change the values in a pivot table.

At this point, you can edit the values in your pivot table. After you have made changes, you can right-click any of the changed values and choose Calculate PivotTable With Change (see Figure 9-41). This forces Excel to reevaluate all the calculations in the pivot table based on your edits—including your calculated members and measures.

After typing a new number in the pivot table, an on-grid pivot drop-down menu appears next to the number. The drop-down menu says Value Has Been Changed. It shows the original value and offers to restore that value. Alternatively, you can calculate the PivotTable with the change.
FIGURE 9-41 Choose Calculate PivotTable With Change to reevaluate all your calculations.

The edits you make to your pivot table while using what-if analysis are, by default, local edits only. If you are committed to your changes and would like to actually make the changes on the OLAP server, you can tell Excel to publish your changes. To do this, in the PivotTable Tools Analyze tab, select What-If Analysis, Publish Changes (see Figure 9-42). This triggers a “write-back” to the OLAP server, meaning the edited values are sent to the source OLAP cube.

If you choose Publish Changes, the new data is pushed back to the OLAP cube. The command is found in OLAP Tools, What-If Analysis, Publish Changes.
FIGURE 9-42 Excel lets you publish your changes to the source OLAP cube!

Image Note

You need adequate server permissions to publish changes to the OLAP server. Your database administrator can guide you through the process of getting write access to your OLAP database.

Next steps

In Chapter 10, “Unlocking features with the Data Model and Power Pivot,” you’ll find out how to use Power Pivot to create powerful reporting models that are able to process and analyze millions of rows of data in a single pivot table.