EXERCISE TOPIC▼
- Access exercises (91)
- C# exercises (79)
- Excel exercises (278)
- Power Apps exercises (13)
- Power Automate exercises (18)
- Power BI exercises (139)
- Power Platform exercises (157)
- Python exercises (28)
- Report Builder exercises (141)
- SQL exercises (198)
- SSAS exercises (51)
- SSIS exercises (46)
- SSRS exercises (99)
- VBA exercises (85)
- Visual Basic exercises (46)
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 | More advanced DAX functions exercise | Use the EARLIER function to group purchases into bands
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.
Software ==> | PowerPivot (75 exercises) |
Version ==> | Excel 2016 and later |
Topic ==> | More advanced DAX functions (5 exercises) |
Level ==> | Harder than average |
Subject ==> | Power BI training |
- Go into SQL Server Management Studio;
- Open the SQL file you've just unzipped (you can press CTRL + O to do this); then
- Execute this script.
This will generate the database that you'll need to use in order to do this exercise (note that the database and script are only to be used for exercises published on this website, and may not be reused or distributed in any form without the prior written permission of Wise Owl).
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.
Create a new workbook, and import the following tables into your PowerPivot data model:

The tables you'll need for this exercise (as is our owly wont, we've given them friendly names).
Open the Word document in the above folder called Unit sizes, and paste it into your PowerPivot data model as a new table called Sizes.

Don't join this table to any other, though - it should stand alone.
Now create a calculated column in the Centre table (not a measure) to give the size verdict for each centre:

Categorise each centre into bands.
You can do this by using the CALCULATE function to show the value of the category from the Sizes table, applying these two filters:
- This row's NumberUnits value is greater than or equal to the Lower field value in the Sizes table; and
- This row's NumberUnits value is less than the Upper field value in the Sizes table.
You can refer to "This row" by using the EARLIER function - but this is still a difficult exercise, and should you get stuck an answer is shown below.
Here's one possible answer to this exercise:
=CALCULATE (
VALUES ( Categories[Category] ),
EARLIER ( Centre[NumberUnits] ) < Categories[Upper],
EARLIER ( Centre[NumberUnits] ) >= Categories[Lower]
)
Finally, use this calculated column to summarise sales by size category:

How ironic that sales in the Massive category should be the smallest!
Save this workbook as Aaargh, then close it down.