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 ()
- 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 | Date functions exercise | Compare useful statistics using various date functions
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 2013 and later |
Topic ==> | Date functions (10 exercises) |
Level ==> | Harder than average |
Subject ==> | Power BI 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 (copying and commercial use prohibited) to generate a database called MAM. Also if you haven't already done so, run the spCreateCalendarTable stored procedure to create a calendar table.
Create a new workbook, and within this create a data model incorporating the tblCalendar, tblPos and tblTransaction tables.
See how many of the following calculated fields you can create (here we're showing figures for 2014, using a year filter):

See below for hints!
Here are some notes on how to create each of the 5 columns in the pivot table shown on the previous page:
Calculated field | Notes |
---|---|
This period | This is just the sum of the quantity sold (you can just use an implicit calculated field). |
Last year total | Use the PARALLELPERIOD function to show total quantity sold for the whole of the previous year. |
PercentLastYear | Divide the first column by the second. You should wrap this in an IFERROR function to return BLANK if there's a problem, otherwise this will give an error for 2013. |
YearToDate | A simple (!) TOTALYTD function. |
LastYearYTD | Use a combination of the SAMEPERIODLASTYEAR and DATESYTD functions (you may need to refer to the example in the course manual for help). |
Save this workbook as Impressive stuff, then close it down.