EXERCISE TOPIC▼
POWER BI EXERCISES▼
POWERPIVOT EXERCISES▼
- PowerPivot data models (7)
- Pivot tables using PowerPivot (2)
- Using Excel tables (3)
- Using other data sources (1)
- Transforming data (Power Query) (7)
- Calculated columns (7)
- Measures (2)
- The CALCULATE function (15)
- More advanced DAX functions (5)
- Calendars (1)
- Date functions (10)
- Hierarchies (2)
- KPIs (5)
- Power View (4)
- Power BI Desktop overview (3)
- Power BI Desktop maps (1)
PowerPivot | The CALCULATE function exercise | Use CALCULATE to work out regional proportions
This exercise is provided to allow potential course delegates to choose the correct Wise Owl Microsoft training course, and may not be reproduced in whole or in part in any format without the prior written consent of Wise Owl.
You can learn how to do this exercise if you attend the course listed below!
Software ==> | PowerPivot (75 exercises) |
Version ==> | Excel 2010 and later |
Topic ==> | The CALCULATE function (15 exercises) |
Level ==> | Relatively easy |
Classroom ==> | PowerPivot / Excel Power BI |
You need a minimum screen resolution of about 700 pixels width to see our exercises. This is because they contain diagrams and tables which would not be viewable easily on a mobile phone or small laptop. Please use a larger tablet, notebook or desktop computer, or change your screen resolution settings.
The aim of this exercise is to create the followng pivot table:

For each region, compare it's sales per year against total sales across all regions.
As always, further explanations follows!
To start, if you haven't already done so run the script in the above folder to generate the MAM database (not for commercial use or copying).
The PowerPivot field list you'll need for this is as follows:

It doesn't have to be this neat, but these will be the fields you'll need.
Here are the relationships that you'll need:

You'll need the regions table, the transactions table, and all the tables between them.
Once you've got the basic pivot table working, add two measures:
Measure | What it calculates |
---|---|
All regions | The total quantity of transactions, but for all regions (see hint below). |
Proportion | The total quantity of sales for this cell (ie for this filter context), divided by the total quantiy of transactions for all regions. |
The syntax you'll need is =CALCULATE(SUM(something),ALL(some column).
Save this workbook as Regional proportions, then close it down.