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)
SSAS EXERCISES▼
SSAS - TABULAR EXERCISES▼
- Creating a data model (2)
- Excel pivot tables (1)
- PowerView (2)
- Power BI Desktop overview (1)
- Other data sources (1)
- Calculated columns (4)
- Measures (3)
- Changing query context (2)
- The EARLIER Function (1)
- DAX queries (3)
- Date calculations (3)
- Hierarchies (1)
- KPIs (2)
- Perspectives (1)
- Prototyping using PowerPivot (1)
- Security (2)
SSAS - tabular | PowerView exercise | Create a multiple pie chart of sales by animal and month
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 ==> | SSAS - tabular (30 exercises) |
Version ==> | SSAS 2012 and later |
Topic ==> | PowerView (2 exercises) |
Level ==> | Harder than average |
Subject ==> | SSAS training |
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.
If you haven't already done so, run the SQL script in the above folder in SQL Server Management Studio to generate a database (not for commercial use or copying) called MAM.
Create a new project/model, and import into it the following tables:
- tblAnimal
- tblCentre
- tblCentreType
- tblPos
- tblProduct
- tblStore
- tblTransaction
Add the following calculated columns to the Pos table:
Column | Formula |
---|---|
MonthName | =format([PosDate],"mm mmmm") |
MonthNumber | =month([PosDate]) |
YearNumber | =year([PosDate]) |
Now go into Excel 2013, and create a data connection, displaying the data resulting from this in a Power View report.
In this report, create the following chart:

You'll need to add the following Power View filters: year = 2014, month <= 3, centre type is NOT shopping centre.
Save this workbooks as Pie fiesta, then close it and the project down.