├── Exercises ├── 01 - Exercises - Load Data.docx ├── 02 - Exercises - Modelling Data in Power BI Desktop.docx ├── 03 - Exercises - Explore Data in Power BI Desktop.docx ├── 04 - Exercises - Intro to DAX.docx ├── pbix │ ├── 01-Start-Ex2.pbix │ ├── 02-End-Ex2.pbix │ ├── 03-End-Ex3.pbix │ ├── 04-Start-Ex4.pbix │ ├── 05-End-Ex4.pbix │ ├── 06-Start-Ex5.pbix │ ├── 07-Start-Ex6.pbix │ ├── 08-End-Ex8.pbix │ └── readme.md └── readme.md ├── LICENSE ├── README.md ├── pbix ├── Readme.md └── TopMovies.pbix ├── sample_powerbi_workshop.png └── sourcedata ├── ExtraMovieInfo.txt ├── Top250Movies.xlsx └── readme.md /Exercises/01 - Exercises - Load Data.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/01 - Exercises - Load Data.docx -------------------------------------------------------------------------------- /Exercises/02 - Exercises - Modelling Data in Power BI Desktop.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/02 - Exercises - Modelling Data in Power BI Desktop.docx -------------------------------------------------------------------------------- /Exercises/03 - Exercises - Explore Data in Power BI Desktop.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/03 - Exercises - Explore Data in Power BI Desktop.docx -------------------------------------------------------------------------------- /Exercises/04 - Exercises - Intro to DAX.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/04 - Exercises - Intro to DAX.docx -------------------------------------------------------------------------------- /Exercises/pbix/01-Start-Ex2.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/01-Start-Ex2.pbix -------------------------------------------------------------------------------- /Exercises/pbix/02-End-Ex2.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/02-End-Ex2.pbix -------------------------------------------------------------------------------- /Exercises/pbix/03-End-Ex3.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/03-End-Ex3.pbix -------------------------------------------------------------------------------- /Exercises/pbix/04-Start-Ex4.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/04-Start-Ex4.pbix -------------------------------------------------------------------------------- /Exercises/pbix/05-End-Ex4.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/05-End-Ex4.pbix -------------------------------------------------------------------------------- /Exercises/pbix/06-Start-Ex5.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/06-Start-Ex5.pbix -------------------------------------------------------------------------------- /Exercises/pbix/07-Start-Ex6.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/07-Start-Ex6.pbix -------------------------------------------------------------------------------- /Exercises/pbix/08-End-Ex8.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/Exercises/pbix/08-End-Ex8.pbix -------------------------------------------------------------------------------- /Exercises/pbix/readme.md: -------------------------------------------------------------------------------- 1 | These .pbix files can either be used as a starting point for an exercise (too avoid too much repetitive work), 2 | or at the end of an exercise, to double-check your work. 3 | -------------------------------------------------------------------------------- /Exercises/readme.md: -------------------------------------------------------------------------------- 1 | Here you can find a bunch of written out exercises. Following these exercises, you'll recreate for a large part the TopMovies.pbix 2 | model which you can download from the pbix folder. 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 KoenVerbeeck 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PowerBI-Course 2 | Free open-source course for demonstrating Power BI Desktop capabilities under MIT license. 3 | 4 | The slidedeck for this workshop can be found at [docs.com](https://docs.com/koenverbeeck/6986/power-bi-workshop). 5 | 6 | ![Overview report in Power BI Desktop](https://github.com/KoenVerbeeck/PowerBI-Course/blob/master/sample_powerbi_workshop.png "Sample") 7 | -------------------------------------------------------------------------------- /pbix/Readme.md: -------------------------------------------------------------------------------- 1 | This .pbix Power BI Desktop file contains several reports. 2 | In each report, several capabilities and new features of the product are demonstrated. 3 | The source data comes from two files: one Excel file with the most popular movies and one flat file (tab delimited) with extra movie information. 4 | -------------------------------------------------------------------------------- /pbix/TopMovies.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/pbix/TopMovies.pbix -------------------------------------------------------------------------------- /sample_powerbi_workshop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/sample_powerbi_workshop.png -------------------------------------------------------------------------------- /sourcedata/ExtraMovieInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/sourcedata/ExtraMovieInfo.txt -------------------------------------------------------------------------------- /sourcedata/Top250Movies.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoenVerbeeck/PowerBI-Course/ddf10b26cc68d30d76771652133377ee616fe3cd/sourcedata/Top250Movies.xlsx -------------------------------------------------------------------------------- /sourcedata/readme.md: -------------------------------------------------------------------------------- 1 | These two files are used as the source data for the Power BI Desktop model. 2 | The Excel file contains a list of the most popular movies. The tab-delimited flat file contains extra information about those movies. 3 | In the Query editor, both sources are merged together. 4 | --------------------------------------------------------------------------------