Primer on Power BI
Mark Tabladillo, PhD, MVP
Consultant SolidQ
SQL Saturday Nashville
January 17, 2015
Primer on Power BI 201501
Networking
Mark Tab
Consulting
Training
Teaching
Presenting
SQL Server MVP
Linked In
@MarkTabNet
The World of Data is Changing
Process
Efficiency
Cost
Reduction
Bringing Big Data
to ONE BILLION
people
Develop
New Business
Models
1 in 4 enterprise customers on Office 3651 Billion Office Users
Analyze Visualize Share Find
Q&A
MobileDiscover
Scalable | Manageable | Trusted
Self-service BI with the familiarity of Office and the power of the service
Distribution Options
Cloud
Hybrid
On-premise
MarkTab Analysis
Primer on Power BI 201501
Outline
â—ŸWhat makes Power BI different from the Microsoft Office I have known for years?
â—ŸWhat are the major Power BI features in Excel 2013 and 2010?
â—ŸWhat are the major features for Power BI for Office 365?
â—ŸHow can our team license Power BI?
How is Power BI
Different
Video: Microsoft Garage
Major Power BI
Features in Excel
Excel 2010 and Excel 2013
A powerful new way to work with data
Self-servicebusinessintelligenceandanalyticswithExcelandthepowerofthecloud
Major Power BI Features in Excel
Power Query
Power Pivot
Power View
Power Map
Discover
Analyze
Visualize
Explore
Analyzing data with Excel
Connectors
Why Power Query?
Enables self-service data discovery, query, transformation and mashup experiences in Excel
Discovery and connectivity to a wide range of data sources, including publicly
available data of all sizes & shapes.
Highly interactive and intuitive experience for rapidly and iteratively building queries
over any data source, any size.
Consistency of experience, and parity of query capabilities over all data sources.
Joins across different data sources; ability to create custom views over data that can
then be shared with team/department.
Power Query Role
‱ Transform data using a client tool
‱ Possible execution server-side (data refresh in Power BI)
‱ Share queries and expressions (simple text file, repository available in Office 365)
Self-Service ETL
‱ Same language regardless of data source
‱ Graphical user interface and interactive editor
‱ Does not hide the query in the data model
‱ Technically it would be possible to analyze dependencies in a “M” expression (not
yet implemented)
Integrate queries
in Power Pivot
data models
Exploring Power Query in Microsoft
Excel 2013
http://channel9.msdn.com/Events/TechEd/NorthAmerica/2014/DBI-H302#fbid=
Power Query Formula Language: “M”
Functional language similar to F#
No “real” iterative statements
Lambda functions

Flexible, can be invoked dynamically
Expression.Evaluate(
)
Specifically, the intermediate/advanced Excel users
Litmus test: “User benefits from the Excel’s Formula bar”
Familiar, easy to remember
Easy to read and write; limited syntax, use of non standard symbols
A superset of the Excel formula language
Close to concepts in DAX, where appropriate
Powerful capabilities for the advanced user
Design Values
Syntax for a Simple Query
SELECT Orders.OrderDate, Products.OrderID, Products.ProductSKU
FROM Products
INNER JOIN Orders ON Products.OrderID = Orders.OrderID
ORDER BY Products.ProductSKU
from p in Products
join o in Orders on p.OrderID equals o.OrderID
orderby p.ProductSKU
select new { o.OrderDate, p.OrderID, p.ProductSKU }
Products.Join(Orders, Products,
o => o.OrderID, p => p.OrderID,
(p, o) => new { o.OrderDate, p.OrderID, p.ProductSKU }
).OrderBy( p => p.ProductSKU )
let
Joined = Table.Join( Products, "OrderID", Orders, "OrderID" ),
Columns = Table.SelectColumns(Joined, {"OrderDate", "OrderID", "ProductSKU"}),
Sorted = Table.Sort( Columns, "ProductSKU" ),
in
Sorted
Query Folding
Power Query pushes work back to the source system whenever it can.
SELECT ProductKey, EnglishProductName as [Product]
FROM [dbo].[DimProduct]
WHERE [ProductKey] < 10
Sharing Queries and Functions
You can share queries and functions
Requires Office 365 account with Power BI
Published queries can be “certified”
Requires Data Steward role
Accessible through “Online Search”
Query is copied and executed locally
No execution server-side
Power Query Specifications and Limits
https://support.office.com/en-US/Article/Power-Query-specifications-and-limits-
5fb2807c-1b16-4257-aa5b-6793f051a9f4?ui=en-US&rs=en-US&ad=US
Analyzing data with Excel
Discover
Analyze
Visualize
Explore
BI Semantic Model
Best Practices for Power Pivot
‱You take care of the unseen
‱Microsoft will take care of
the seen
Power BI
Contract
Data Model Specifications and Limits
https://support.office.com/en-us/article/Data-Model-specification-and-limits-
19aa79f8-e6e8-45a8-9be2-b58778fd68ef?ui=en-US&rs=en-US&ad=US
Power Pivot Capacity Specification
http://msdn.microsoft.com/en-us/library/gg413465(v=sql.110).aspx
Analyzing data with Excel
Discover
Analyze
Visualize
Explore
Exploring Power View in Microsoft
Excel 2013
http://channel9.msdn.com/Events/TechEd/NorthAmerica/2014/DBI-H201#fbid=
Power View – Geospatial CapabilitiesPros
 Bubble Maps
 Bubble Maps with Pie Charts
 Interactive with drill down capabilities in larger dashboard
Cons
 Unable to add multiple layers or any other customizations
 No other major type of map visualization
 No time play or storytelling capabilities
Planning for Power View
System requirements for Power View
Planning for Reporting Services and Power View Browser Support (SSRS 2014)
Analyzing data with Excel
Discover
Analyze
Visualize
Explore
Exploring Power Map in Microsoft Excel
2013
http://channel9.msdn.com/Events/TechEd/NorthAmerica/2014/DBI-H301#fbid=
4
7
Power Map – Geospatial Capabilities
Pros
 Bubble Maps, Column Maps, Region Maps and HeatMaps
 Interactive and time-play axis
 Ability to create and share visual tours
 Ability to add multiple layers
 Storytelling tool, not just visualization
Cons
 Unable to filter data
 Unable to drill-down (though can switch between layers)
 Unable to customize or add custom shapes
 Unable to handle hierarchies
Inspire people to
imagine

TheIdeal Mapof Mapping: Specifications forImagination
TEMPORAL
Pattern & Animation
SPATIAL
Data Conflation Overlay
REFRAMING
Cartogram Normalization
Source: PowerMaps, Various; ‘World Mapping’ Dorin, Barford & Newman; IPE UX Analysis,
Power BI and Excel 2010
Software Solution
Power Pivot A version one of Power Pivot is available for Excel 2010. Microsoft’s website provides video, demos, and hands-on
labs to try out the software.
Opening up an Excel 2010 Power Pivot workbook in Excel 2013 requires an irreversible upgrade (meaning that
collaboration between Excel 2010 and Excel 2013 users is not possible – pick one version or the other). There are
some technical details involved in upgrading, which you can study by clicking this link.
Power Map Power Map is not available for Excel 2010.
Versions of Excel previous to 2002 had a native map feature. Though, advanced Excel users will know about
Microsoft MapPoint, which has gone through nineteen versions since its debut. Sadly, MapPoint is being
discontinued as of December 31, 2014. You might be able to obtain a copy now, or through some MSDN
subscriptions.
Power Query Power Query is available for Microsoft Office 2010 Professional Plus with Software Assurance. There are two
versions, one for 32-bit (x86) and one for 64-bit (x64).
Power View Power View is not available for Excel 2010.
Major Power BI
Features O365
A powerful new way to work with data
Self-service business intelligence with familiar Excel and the power of the cloud
Sample Architecture
SQL Server Warehouse
(Issues IS)
Active Directory
(People)
Azure Information
(Data Centers)
Power BI for Office 365
Corporate
Data Catalogue
Admin
Center
Manage Data
Portal
SPO team sites, BI
Sites, Q&A
Data Management Gateway
APS Warehouse
(Issues BI)
Shared Queries
Data Refresh
Data Search
Mobile Access
BI Sites
Natural Language
Questions
Share & collaborate with Power BI for Office 365
Shared Queries
Data Refresh
Data Search
Mobile Access
BI Sites
Natural Language
Questions
Share & collaborate with Power BI for Office 365
Power BI
for Office 365
Data Management Gateway
Installed on-premises
Workbook
Cloud
On Premise
Share & collaborate with Power BI for Office 365
Shared Queries
Data Refresh
Data Search
Mobile Access
BI Sites
Natural Language
Questions
Share & collaborate with Power BI for Office 365
Shared Queries
Data Refresh
Data Search
Mobile Access
BI Sites
Natural Language
Questions
Search for:
‱ Public Data
‱ Corporate Data
‱ Shared Queries
Share & collaborate with Power BI for Office 365
Shared Queries
Data Refresh
Data Search
Mobile Access
BI Sites
Natural Language
Questions
Share & collaborate with Power BI for Office 365
Shared Queries
Data Refresh
Data Search
Mobile Access
BI Sites
Natural Language
Questions
Sample Working Architecture
O365 Power BI
Corporate Data
Sources
IT Admin
Data Management
Gateway
Corporate
Data Catalog
Power BI
Admin Center
Data Management
Portal
SPO team sites,
BI Sites, Q&A
Cloud Data
Sources
Public
Data Catalog
Data Steward IW
(Author)
IW
(Consumer)
Manage Data
Publish raw
data sources
or expose
them as
OData feeds
Publish queries
Data Refresh
Data Refresh
Power Query
Power Pivot
Power View
Power Map
Publish reports &
create featured
questions, configure
scheduled refresh
Import data,
Publish queries
Excel,
Tablet/Mobile,
Browser –
Silverlight,
HTML5
Consume interactive
reports, ask questions
Configure
Import Data
Import Data
Import Data
Import Data
Public Cloud
Data Sources
Index
Licensing Power BI
MarkTab Recommendation
‱Office 2010Possible
‱Office 2013 x64Recommended
Method One
Power BI for Office 365
Method Two
Power BI for Office 365
SharePoint Online Plan 2
Method Three
Power BI for Office 365
SharePoint Online Plan 2
Power BI Excel Features
Home Office 365 ProPlus
Office 2013 Professional Plus
Office 365 Home
Office 365 Personal
Office Home & Student 2013
Office Home & Business 2013
Office Professional 2013
Business Office 365 ProPlus
Office 2013 Professional Plus
Office 365 Business Essential
Office 365 Business
Office 365 Business Premium
Enterprise Office 365 Enterprise E3
Office 365 Enterprise E4
Office 365 ProPlus
Office 2013 Professional Plus
Office 365 Enterprise E1
Education Office 365 Education E3 Office 365 ProPlus
Office 2013 Professional Plus
Office 365 Education E1
Government Office 365 Enterprise E3 (Government
Pricing)
Office 365 ProPlus
Office 2013 Professional Plus
Exchange Online Plan 1
Exchange Online Plan 3
Office 365 Enterprise E1 (Government
Pricing)
Nonprofit Office 365 Nonprofit E3 Office 365 ProPlus
Office 2013 Professional Plus
Office 365 Nonprofit Business
Essentials
Office 365 Nonprofit Business Premium
Office 365 Nonprofit E1
A powerful new way to work with data
Analyze
Visualize
Share
Question
Q&A
Mobility
Discover
Search, access, and transform
public and internal data sources
with Power Query
Share data views and workbooks
refreshable from on-premises and
cloud based data sources, with
Power BI Sites
Easy data modeling and lightning
fast in-memory analytics with
Power Pivot
Bold new interactive data
visualizations with Power View and
Power Map
Ask questions and get immediate
answers with natural language
query
Mobile access through HTML5 and
touch optimized apps
Scalable | Manageable | Trusted
Primer on Power BI 201501
Connect with MarkTab
LinkedIn
Twitter @marktabnet
Appendix
Cool stuff
Free Microsoft Software
For Students https://www.dreamspark.com/
For Startups http://www.microsoft.com/bizspark/
Recommended Links
Free eBooks http://blogs.msdn.com/b/mssmallbiz/archive/2014/07/07/largest-
collection-of-free-microsoft-ebooks-ever-including-windows-8-1-windows-8-
windows-7-office-2013-office-365-office-2010-sharepoint-2013-dynamics-crm-
powershell-exchange-server-lync-2013-system-center-azure-cloud-sql.aspx
Documentation http://msdn.Microsoft.com
Channel 9 Videos http://channel9.msdn.com/Search?term=power%20bi#ch9Search
PASS http://sqlpass.org
MarkTab Blog http://marktab.net
Books
Collie, R. (2012). DAX Formulas for PowerPivot: A Simple Guide to the Excel Revolution: Holy
Macro! Books.
de Jonge, K. (2014). Dashboarding and Reporting with Power Pivot and Excel: How to Design
and Create a Financial Dashboard with PowerPivot – End to End: Holy Macro! Books.
Ferrari, A., & Russo, M. (2013). Microsoft Excel 2013 Building Data Models with PowerPivot:
Microsoft Press.
Jelen, B., & Collie, R. (2014). PowerPivot Alchemy: Patterns and Techniques for Excel: Holy
Macro! Books.
Larson, B., Davis, M., English, D., & Purington, P. (2012). Visualizing Data with Microsoft Power
View: McGraw-Hill/Osborne Media.
Webb, C. (2014). Power Query for Power BI and Excel: Apress.
Abstract
Power BI (Business Intelligence) is a new and emerging self-service business
intelligence and business analytics framework that brings together and enhances a
few key Microsoft technologies. Fundamentally, Power BI is considered a premium
Office option, because Microsoft licenses it that way. We will answer the following
questions:
â—ŸWhat makes Power BI different from the Microsoft Office I have known for years?
â—ŸWhat are the major Power BI features in Excel 2013 and 2010?
â—ŸWhat are the major features for Power BI for Office 365?
â—ŸHow can our team license Power BI?

More Related Content

PPTX
Power bi introduction
PPTX
Power BI Made Simple
PDF
What is Power BI
PPTX
Microsoft power bi
PDF
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
PPTX
Microsoft Power BI | Brief Introduction | PPT
PDF
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...
Power bi introduction
Power BI Made Simple
What is Power BI
Microsoft power bi
Power BI Training | Getting Started with Power BI | Power BI Tutorial | Power...
Microsoft Power BI | Brief Introduction | PPT
Power BI Tutorial For Beginners | Power BI Tutorial | Power BI Demo | Power B...

What's hot (20)

PDF
Power BI Desktop | Power BI Tutorial | Power BI Training | Edureka
PPTX
Microsoft Power BI
PPTX
Power bi overview
PPTX
What is Power BI
PPTX
Power BI Overview
PDF
Power bi-dashboard-in-a-day-diad-mumbai-2019
PDF
Microsoft Power BI Technical Overview
PPTX
Power BI Ecosystem
PPTX
Power BI : A Detailed Discussion
PPTX
Intro for Power BI
PPTX
Introduction to Power BI to make smart decisions
PPTX
Introduction to power BI
PDF
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...
PPTX
Power BI Report Server: a Deep Dive for SQL PASS Vancouver
PDF
Self service BI overview + Power BI
PPTX
Power BI visuals
PPTX
Power bi
PPT
Introduction to Power BI
PPTX
Data Visualization Techniques in Power BI
PPTX
MICROSOFT POWER BI PPT.pptx
Power BI Desktop | Power BI Tutorial | Power BI Training | Edureka
Microsoft Power BI
Power bi overview
What is Power BI
Power BI Overview
Power bi-dashboard-in-a-day-diad-mumbai-2019
Microsoft Power BI Technical Overview
Power BI Ecosystem
Power BI : A Detailed Discussion
Intro for Power BI
Introduction to Power BI to make smart decisions
Introduction to power BI
What Is Power BI? | Introduction To Microsoft Power BI | Power BI Training | ...
Power BI Report Server: a Deep Dive for SQL PASS Vancouver
Self service BI overview + Power BI
Power BI visuals
Power bi
Introduction to Power BI
Data Visualization Techniques in Power BI
MICROSOFT POWER BI PPT.pptx
Ad

Viewers also liked (8)

PPTX
DAX and Power BI Training - 001 Overview
PPTX
Power BI - Finally I can make decisions based on facts
PPTX
Power BI: From the Basics
PPTX
Power-BI and SharePoint
 
PPTX
JSS2014 – Le grand tour de Power BI
 
PPTX
Power BI Overview
PPTX
The Power of BI: A guided tour of Microsoft's Business Intelligence tooling
PPTX
DAX (Data Analysis eXpressions) from Zero to Hero
DAX and Power BI Training - 001 Overview
Power BI - Finally I can make decisions based on facts
Power BI: From the Basics
Power-BI and SharePoint
 
JSS2014 – Le grand tour de Power BI
 
Power BI Overview
The Power of BI: A guided tour of Microsoft's Business Intelligence tooling
DAX (Data Analysis eXpressions) from Zero to Hero
Ad

Similar to Primer on Power BI 201501 (20)

PDF
Primer on Power BI 201506
PDF
Microsoft Power BI Overview
PDF
Learn How to Use Microsoft Power BI for Office 365 to Analyze Salesforce Data
PDF
Primer on Power BI 20151003
PPTX
PPTX
Powerbi 130926080957-phpapp02
 
PDF
Learn Power BI with Power Pivot, Power Query, Power View, Power Map and Q&A
DOCX
Power BI - Business Intelligence Getting Started Guide - PREVIEW
PPTX
Power BI - Bring your data together
PDF
Bake-off Power BI
PPTX
Enabling Self Service Business Intelligence using Excel
PPTX
Business Intelligent (BI) for Office 365
PPTX
Office 365 Saturday Europe - Self-Service Business Intelligence with Power BI
PDF
Working with Microsoft Power Business Inteligence Tools - Presented by Atidan
PPTX
Business Intelligence solutions using Excel 2013 and Power BI
PPT
powerBI_theguy.ppt
PDF
Business Intelligence in Excel 2013
PPTX
Self-Service Data Integration with Power Query
PDF
Introduction to Advanced Analytics with SharePoint Composites
Primer on Power BI 201506
Microsoft Power BI Overview
Learn How to Use Microsoft Power BI for Office 365 to Analyze Salesforce Data
Primer on Power BI 20151003
Powerbi 130926080957-phpapp02
 
Learn Power BI with Power Pivot, Power Query, Power View, Power Map and Q&A
Power BI - Business Intelligence Getting Started Guide - PREVIEW
Power BI - Bring your data together
Bake-off Power BI
Enabling Self Service Business Intelligence using Excel
Business Intelligent (BI) for Office 365
Office 365 Saturday Europe - Self-Service Business Intelligence with Power BI
Working with Microsoft Power Business Inteligence Tools - Presented by Atidan
Business Intelligence solutions using Excel 2013 and Power BI
powerBI_theguy.ppt
Business Intelligence in Excel 2013
Self-Service Data Integration with Power Query
Introduction to Advanced Analytics with SharePoint Composites

More from Mark Tabladillo (20)

PDF
How to find low-cost or free data science resources 202006
PDF
Microsoft Build 2020: Data Science Recap
PDF
201909 Automated ML for Developers
PDF
201908 Overview of Automated ML
PDF
201906 01 Introduction to ML.NET 1.0
PDF
201906 04 Overview of Automated ML June 2019
PDF
201906 03 Introduction to NimbusML
PDF
201906 02 Introduction to AutoML with ML.NET 1.0
PDF
201905 Azure Databricks for Machine Learning
PDF
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...
PDF
Big Data Advanced Analytics on Microsoft Azure 201904
PDF
Managing Enterprise Data Science 201904
PDF
Training of Python scikit-learn models on Azure
PDF
Big Data Adavnced Analytics on Microsoft Azure
PDF
Advanced Analytics with Power BI 201808
PDF
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)
PDF
Machine learning services with SQL Server 2017
PDF
Microsoft Technologies for Data Science 201612
PDF
How Big Companies plan to use Our Big Data 201610
PDF
Georgia Tech Data Science Hackathon September 2016
How to find low-cost or free data science resources 202006
Microsoft Build 2020: Data Science Recap
201909 Automated ML for Developers
201908 Overview of Automated ML
201906 01 Introduction to ML.NET 1.0
201906 04 Overview of Automated ML June 2019
201906 03 Introduction to NimbusML
201906 02 Introduction to AutoML with ML.NET 1.0
201905 Azure Databricks for Machine Learning
201905 Azure Certification DP-100: Designing and Implementing a Data Science ...
Big Data Advanced Analytics on Microsoft Azure 201904
Managing Enterprise Data Science 201904
Training of Python scikit-learn models on Azure
Big Data Adavnced Analytics on Microsoft Azure
Advanced Analytics with Power BI 201808
Microsoft Cognitive Toolkit (Atlanta Code Camp 2017)
Machine learning services with SQL Server 2017
Microsoft Technologies for Data Science 201612
How Big Companies plan to use Our Big Data 201610
Georgia Tech Data Science Hackathon September 2016

Recently uploaded (20)

PPTX
FMIS 108 and AISlaudon_mis17_ppt_ch11.pptx
PPTX
Topic 5 Presentation 5 Lesson 5 Corporate Fin
PDF
Optimise Shopper Experiences with a Strong Data Estate.pdf
PPT
DU, AIS, Big Data and Data Analytics.ppt
PPTX
A Complete Guide to Streamlining Business Processes
PDF
Tetra Pak Index 2023 - The future of health and nutrition - Full report.pdf
 
PDF
Data Engineering Interview Questions & Answers Batch Processing (Spark, Hadoo...
PPTX
QUANTUM_COMPUTING_AND_ITS_POTENTIAL_APPLICATIONS[2].pptx
PDF
Votre score augmente si vous choisissez une catégorie et que vous rédigez une...
PPTX
chrmotography.pptx food anaylysis techni
PPTX
CYBER SECURITY the Next Warefare Tactics
PPTX
Lesson-01intheselfoflifeofthekennyrogersoftheunderstandoftheunderstanded
PDF
Introduction to Data Science and Data Analysis
PDF
Microsoft Core Cloud Services powerpoint
PPTX
Phase1_final PPTuwhefoegfohwfoiehfoegg.pptx
PPTX
retention in jsjsksksksnbsndjddjdnFPD.pptx
PDF
Transcultural that can help you someday.
PDF
Microsoft 365 products and services descrption
PPTX
SAP 2 completion done . PRESENTATION.pptx
PPTX
SET 1 Compulsory MNH machine learning intro
FMIS 108 and AISlaudon_mis17_ppt_ch11.pptx
Topic 5 Presentation 5 Lesson 5 Corporate Fin
Optimise Shopper Experiences with a Strong Data Estate.pdf
DU, AIS, Big Data and Data Analytics.ppt
A Complete Guide to Streamlining Business Processes
Tetra Pak Index 2023 - The future of health and nutrition - Full report.pdf
 
Data Engineering Interview Questions & Answers Batch Processing (Spark, Hadoo...
QUANTUM_COMPUTING_AND_ITS_POTENTIAL_APPLICATIONS[2].pptx
Votre score augmente si vous choisissez une catégorie et que vous rédigez une...
chrmotography.pptx food anaylysis techni
CYBER SECURITY the Next Warefare Tactics
Lesson-01intheselfoflifeofthekennyrogersoftheunderstandoftheunderstanded
Introduction to Data Science and Data Analysis
Microsoft Core Cloud Services powerpoint
Phase1_final PPTuwhefoegfohwfoiehfoegg.pptx
retention in jsjsksksksnbsndjddjdnFPD.pptx
Transcultural that can help you someday.
Microsoft 365 products and services descrption
SAP 2 completion done . PRESENTATION.pptx
SET 1 Compulsory MNH machine learning intro

Primer on Power BI 201501

  • 1. Primer on Power BI Mark Tabladillo, PhD, MVP Consultant SolidQ SQL Saturday Nashville January 17, 2015
  • 5. The World of Data is Changing
  • 6. Process Efficiency Cost Reduction Bringing Big Data to ONE BILLION people Develop New Business Models
  • 7. 1 in 4 enterprise customers on Office 3651 Billion Office Users Analyze Visualize Share Find Q&A MobileDiscover Scalable | Manageable | Trusted Self-service BI with the familiarity of Office and the power of the service
  • 11. Outline â—ŸWhat makes Power BI different from the Microsoft Office I have known for years? â—ŸWhat are the major Power BI features in Excel 2013 and 2010? â—ŸWhat are the major features for Power BI for Office 365? â—ŸHow can our team license Power BI?
  • 12. How is Power BI Different
  • 14. Major Power BI Features in Excel Excel 2010 and Excel 2013
  • 15. A powerful new way to work with data Self-servicebusinessintelligenceandanalyticswithExcelandthepowerofthecloud
  • 16. Major Power BI Features in Excel Power Query Power Pivot Power View Power Map
  • 19. Why Power Query? Enables self-service data discovery, query, transformation and mashup experiences in Excel Discovery and connectivity to a wide range of data sources, including publicly available data of all sizes & shapes. Highly interactive and intuitive experience for rapidly and iteratively building queries over any data source, any size. Consistency of experience, and parity of query capabilities over all data sources. Joins across different data sources; ability to create custom views over data that can then be shared with team/department.
  • 20. Power Query Role ‱ Transform data using a client tool ‱ Possible execution server-side (data refresh in Power BI) ‱ Share queries and expressions (simple text file, repository available in Office 365) Self-Service ETL ‱ Same language regardless of data source ‱ Graphical user interface and interactive editor ‱ Does not hide the query in the data model ‱ Technically it would be possible to analyze dependencies in a “M” expression (not yet implemented) Integrate queries in Power Pivot data models
  • 21. Exploring Power Query in Microsoft Excel 2013 http://channel9.msdn.com/Events/TechEd/NorthAmerica/2014/DBI-H302#fbid=
  • 22. Power Query Formula Language: “M” Functional language similar to F# No “real” iterative statements Lambda functions
 Flexible, can be invoked dynamically Expression.Evaluate(
)
  • 23. Specifically, the intermediate/advanced Excel users Litmus test: “User benefits from the Excel’s Formula bar” Familiar, easy to remember Easy to read and write; limited syntax, use of non standard symbols A superset of the Excel formula language Close to concepts in DAX, where appropriate Powerful capabilities for the advanced user Design Values
  • 24. Syntax for a Simple Query SELECT Orders.OrderDate, Products.OrderID, Products.ProductSKU FROM Products INNER JOIN Orders ON Products.OrderID = Orders.OrderID ORDER BY Products.ProductSKU from p in Products join o in Orders on p.OrderID equals o.OrderID orderby p.ProductSKU select new { o.OrderDate, p.OrderID, p.ProductSKU } Products.Join(Orders, Products, o => o.OrderID, p => p.OrderID, (p, o) => new { o.OrderDate, p.OrderID, p.ProductSKU } ).OrderBy( p => p.ProductSKU ) let Joined = Table.Join( Products, "OrderID", Orders, "OrderID" ), Columns = Table.SelectColumns(Joined, {"OrderDate", "OrderID", "ProductSKU"}), Sorted = Table.Sort( Columns, "ProductSKU" ), in Sorted
  • 25. Query Folding Power Query pushes work back to the source system whenever it can. SELECT ProductKey, EnglishProductName as [Product] FROM [dbo].[DimProduct] WHERE [ProductKey] < 10
  • 26. Sharing Queries and Functions You can share queries and functions Requires Office 365 account with Power BI Published queries can be “certified” Requires Data Steward role Accessible through “Online Search” Query is copied and executed locally No execution server-side
  • 27. Power Query Specifications and Limits https://support.office.com/en-US/Article/Power-Query-specifications-and-limits- 5fb2807c-1b16-4257-aa5b-6793f051a9f4?ui=en-US&rs=en-US&ad=US
  • 28. Analyzing data with Excel Discover Analyze Visualize Explore
  • 30. Best Practices for Power Pivot ‱You take care of the unseen ‱Microsoft will take care of the seen Power BI Contract
  • 31. Data Model Specifications and Limits https://support.office.com/en-us/article/Data-Model-specification-and-limits- 19aa79f8-e6e8-45a8-9be2-b58778fd68ef?ui=en-US&rs=en-US&ad=US
  • 32. Power Pivot Capacity Specification http://msdn.microsoft.com/en-us/library/gg413465(v=sql.110).aspx
  • 33. Analyzing data with Excel Discover Analyze Visualize Explore
  • 34. Exploring Power View in Microsoft Excel 2013 http://channel9.msdn.com/Events/TechEd/NorthAmerica/2014/DBI-H201#fbid=
  • 35. Power View – Geospatial CapabilitiesPros  Bubble Maps  Bubble Maps with Pie Charts  Interactive with drill down capabilities in larger dashboard Cons  Unable to add multiple layers or any other customizations  No other major type of map visualization  No time play or storytelling capabilities
  • 36. Planning for Power View System requirements for Power View Planning for Reporting Services and Power View Browser Support (SSRS 2014)
  • 37. Analyzing data with Excel Discover Analyze Visualize Explore
  • 38. Exploring Power Map in Microsoft Excel 2013 http://channel9.msdn.com/Events/TechEd/NorthAmerica/2014/DBI-H301#fbid=
  • 39. 4 7 Power Map – Geospatial Capabilities Pros  Bubble Maps, Column Maps, Region Maps and HeatMaps  Interactive and time-play axis  Ability to create and share visual tours  Ability to add multiple layers  Storytelling tool, not just visualization Cons  Unable to filter data  Unable to drill-down (though can switch between layers)  Unable to customize or add custom shapes  Unable to handle hierarchies
  • 41. TheIdeal Mapof Mapping: Specifications forImagination TEMPORAL Pattern & Animation SPATIAL Data Conflation Overlay REFRAMING Cartogram Normalization Source: PowerMaps, Various; ‘World Mapping’ Dorin, Barford & Newman; IPE UX Analysis,
  • 42. Power BI and Excel 2010 Software Solution Power Pivot A version one of Power Pivot is available for Excel 2010. Microsoft’s website provides video, demos, and hands-on labs to try out the software. Opening up an Excel 2010 Power Pivot workbook in Excel 2013 requires an irreversible upgrade (meaning that collaboration between Excel 2010 and Excel 2013 users is not possible – pick one version or the other). There are some technical details involved in upgrading, which you can study by clicking this link. Power Map Power Map is not available for Excel 2010. Versions of Excel previous to 2002 had a native map feature. Though, advanced Excel users will know about Microsoft MapPoint, which has gone through nineteen versions since its debut. Sadly, MapPoint is being discontinued as of December 31, 2014. You might be able to obtain a copy now, or through some MSDN subscriptions. Power Query Power Query is available for Microsoft Office 2010 Professional Plus with Software Assurance. There are two versions, one for 32-bit (x86) and one for 64-bit (x64). Power View Power View is not available for Excel 2010.
  • 44. A powerful new way to work with data Self-service business intelligence with familiar Excel and the power of the cloud
  • 45. Sample Architecture SQL Server Warehouse (Issues IS) Active Directory (People) Azure Information (Data Centers) Power BI for Office 365 Corporate Data Catalogue Admin Center Manage Data Portal SPO team sites, BI Sites, Q&A Data Management Gateway APS Warehouse (Issues BI)
  • 46. Shared Queries Data Refresh Data Search Mobile Access BI Sites Natural Language Questions Share & collaborate with Power BI for Office 365
  • 47. Shared Queries Data Refresh Data Search Mobile Access BI Sites Natural Language Questions Share & collaborate with Power BI for Office 365
  • 48. Power BI for Office 365 Data Management Gateway Installed on-premises Workbook Cloud On Premise Share & collaborate with Power BI for Office 365 Shared Queries Data Refresh Data Search Mobile Access BI Sites Natural Language Questions
  • 49. Share & collaborate with Power BI for Office 365 Shared Queries Data Refresh Data Search Mobile Access BI Sites Natural Language Questions Search for: ‱ Public Data ‱ Corporate Data ‱ Shared Queries
  • 50. Share & collaborate with Power BI for Office 365 Shared Queries Data Refresh Data Search Mobile Access BI Sites Natural Language Questions
  • 51. Share & collaborate with Power BI for Office 365 Shared Queries Data Refresh Data Search Mobile Access BI Sites Natural Language Questions
  • 52. Sample Working Architecture O365 Power BI Corporate Data Sources IT Admin Data Management Gateway Corporate Data Catalog Power BI Admin Center Data Management Portal SPO team sites, BI Sites, Q&A Cloud Data Sources Public Data Catalog Data Steward IW (Author) IW (Consumer) Manage Data Publish raw data sources or expose them as OData feeds Publish queries Data Refresh Data Refresh Power Query Power Pivot Power View Power Map Publish reports & create featured questions, configure scheduled refresh Import data, Publish queries Excel, Tablet/Mobile, Browser – Silverlight, HTML5 Consume interactive reports, ask questions Configure Import Data Import Data Import Data Import Data Public Cloud Data Sources Index
  • 55. Method One Power BI for Office 365 Method Two Power BI for Office 365 SharePoint Online Plan 2 Method Three Power BI for Office 365 SharePoint Online Plan 2 Power BI Excel Features Home Office 365 ProPlus Office 2013 Professional Plus Office 365 Home Office 365 Personal Office Home & Student 2013 Office Home & Business 2013 Office Professional 2013 Business Office 365 ProPlus Office 2013 Professional Plus Office 365 Business Essential Office 365 Business Office 365 Business Premium Enterprise Office 365 Enterprise E3 Office 365 Enterprise E4 Office 365 ProPlus Office 2013 Professional Plus Office 365 Enterprise E1 Education Office 365 Education E3 Office 365 ProPlus Office 2013 Professional Plus Office 365 Education E1 Government Office 365 Enterprise E3 (Government Pricing) Office 365 ProPlus Office 2013 Professional Plus Exchange Online Plan 1 Exchange Online Plan 3 Office 365 Enterprise E1 (Government Pricing) Nonprofit Office 365 Nonprofit E3 Office 365 ProPlus Office 2013 Professional Plus Office 365 Nonprofit Business Essentials Office 365 Nonprofit Business Premium Office 365 Nonprofit E1
  • 56. A powerful new way to work with data Analyze Visualize Share Question Q&A Mobility Discover Search, access, and transform public and internal data sources with Power Query Share data views and workbooks refreshable from on-premises and cloud based data sources, with Power BI Sites Easy data modeling and lightning fast in-memory analytics with Power Pivot Bold new interactive data visualizations with Power View and Power Map Ask questions and get immediate answers with natural language query Mobile access through HTML5 and touch optimized apps Scalable | Manageable | Trusted
  • 60. Free Microsoft Software For Students https://www.dreamspark.com/ For Startups http://www.microsoft.com/bizspark/
  • 61. Recommended Links Free eBooks http://blogs.msdn.com/b/mssmallbiz/archive/2014/07/07/largest- collection-of-free-microsoft-ebooks-ever-including-windows-8-1-windows-8- windows-7-office-2013-office-365-office-2010-sharepoint-2013-dynamics-crm- powershell-exchange-server-lync-2013-system-center-azure-cloud-sql.aspx Documentation http://msdn.Microsoft.com Channel 9 Videos http://channel9.msdn.com/Search?term=power%20bi#ch9Search PASS http://sqlpass.org MarkTab Blog http://marktab.net
  • 62. Books Collie, R. (2012). DAX Formulas for PowerPivot: A Simple Guide to the Excel Revolution: Holy Macro! Books. de Jonge, K. (2014). Dashboarding and Reporting with Power Pivot and Excel: How to Design and Create a Financial Dashboard with PowerPivot – End to End: Holy Macro! Books. Ferrari, A., & Russo, M. (2013). Microsoft Excel 2013 Building Data Models with PowerPivot: Microsoft Press. Jelen, B., & Collie, R. (2014). PowerPivot Alchemy: Patterns and Techniques for Excel: Holy Macro! Books. Larson, B., Davis, M., English, D., & Purington, P. (2012). Visualizing Data with Microsoft Power View: McGraw-Hill/Osborne Media. Webb, C. (2014). Power Query for Power BI and Excel: Apress.
  • 63. Abstract Power BI (Business Intelligence) is a new and emerging self-service business intelligence and business analytics framework that brings together and enhances a few key Microsoft technologies. Fundamentally, Power BI is considered a premium Office option, because Microsoft licenses it that way. We will answer the following questions: â—ŸWhat makes Power BI different from the Microsoft Office I have known for years? â—ŸWhat are the major Power BI features in Excel 2013 and 2010? â—ŸWhat are the major features for Power BI for Office 365? â—ŸHow can our team license Power BI?