├── .gitattributes ├── 9781484240144.jpg ├── Chapter 10 └── Pubs.pbix ├── Chapter 11 └── Pubs.pbix ├── Chapter 3 └── Pubs.pbix ├── Chapter 4 ├── Pubs.pbix └── Pubs.xlsx ├── Chapter 5 ├── Pubs Descriptions.xlsx ├── Pubs Import Data.pbix └── Pubs Transactions.csv ├── Chapter 6 └── DirectQuery AdventureWorksDW.pbix ├── Chapter 7 └── Adventure Works Live Connection.pbix ├── Contributing.md ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/.gitattributes -------------------------------------------------------------------------------- /9781484240144.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/9781484240144.jpg -------------------------------------------------------------------------------- /Chapter 10/Pubs.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 10/Pubs.pbix -------------------------------------------------------------------------------- /Chapter 11/Pubs.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 11/Pubs.pbix -------------------------------------------------------------------------------- /Chapter 3/Pubs.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 3/Pubs.pbix -------------------------------------------------------------------------------- /Chapter 4/Pubs.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 4/Pubs.pbix -------------------------------------------------------------------------------- /Chapter 4/Pubs.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 4/Pubs.xlsx -------------------------------------------------------------------------------- /Chapter 5/Pubs Descriptions.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 5/Pubs Descriptions.xlsx -------------------------------------------------------------------------------- /Chapter 5/Pubs Import Data.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 5/Pubs Import Data.pbix -------------------------------------------------------------------------------- /Chapter 5/Pubs Transactions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 5/Pubs Transactions.csv -------------------------------------------------------------------------------- /Chapter 6/DirectQuery AdventureWorksDW.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 6/DirectQuery AdventureWorksDW.pbix -------------------------------------------------------------------------------- /Chapter 7/Adventure Works Live Connection.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Chapter 7/Adventure Works Live Connection.pbix -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/pro-power-bi-architecture/HEAD/README.md --------------------------------------------------------------------------------