SlideShare ist ein Scribd-Unternehmen logo
1 von 32
POWER BI DAX KICKSTART
Overview and Mechanics of Data Analysis eXpressions
• Introductions
• Introducing Data Analysis eXpressions
(DAX)
• Vehicles of delivery: calculation types
– Calculated columns
– Measures
• Functions: groups and examples
• Summary
• Additional resources
• Q&A
Agenda
Š2019 Senturus, Inc. All rights reserved.
Presenters
Š2019 Senturus, Inc. All rights reserved.
Michael Weinhauer
Practice Area Director
Solutions Architect
Senturus, Inc.
Bill Pearson
Microsoft Business
Intelligence Architect
Senturus, Inc.
Hundreds of Free Resources
Š2018 Senturus, Inc. All rights reserved. 4
www.senturus.com/resources/
This slide deck is from the webinar:
Power BI DAX Kickstart
To view the FREE video recording with demos and
download this deck, go to:
https://senturus.com/resources/power-bi-dax-
kickstart/
Like What You See?
Š2018 Senturus, Inc. All rights reserved. 5
INTRODUCING DATA ANALYSIS
EXPRESSIONS
• DAX serves as the language of:
– Power BI
– Excel Power Pivot
– SQL Server Analysis Services Tabular
• Initially seems simple, but the learning curve can
increase dramatically – and at the worst possible times
• DAX comprises programming concepts that will be
unfamiliar to many who have worked with SQL and
other query languages
• We’ll discuss tips in easing the effort required to get to
know DAX from the first glimpse
Data Analysis eXpressions Language
7
• Function calls drive execution
• Elements of DAX are derived from:
– Excel functions
– SQL
– MDX
• Example of a simple formula
UniqueCustomerCount =
COUNT(Customer[CustomerKey])
DAX Is an Expression Language
8
• The general format
– ‘TableName’[ColumnName]
• Quotes can be omitted
– If TableName does not contain spaces
– BEST PRACTICE: Don’t use spaces
• TableName can be omitted
– Current table is searched for ColumnName
– BEST PRACTICE: Always use complete TableName /
ColumnName to avoid ambiguity
• Brackets for column name cannot be omitted
DAX Syntax for Columns
9
DAX can be employed in Power BI through a couple of
mechanisms:
• Calculated columns
• Measures
Primary Vehicles for DAX: Calculation types
10
Example: Calculated column in the Product table that
computes the “Gross Profit Margin” for each product
Intro_CalCol_Product_Margin =
'Product'[ListPrice]-'Product'[StandardCost]
Calculated Column Creation
11
DEMO: Create Calculated Column
12
Example: Measure in the Product table that computes the
Total Quantity (based on Order Quantity in the related
Internet Sales table)
Intro_Measure_Product_TotalQty =
SUM(InternetSales[OrderQuantity])
Measures Creation
13
DEMO: Create Measure
14
• Calculated columns are best when we need to
– Slice or filter on the value
• Measures are best when we need to
– Calculate percentages
– Calculate ratios
– Perform complex aggregations
– Fully take advantage of filter context
• Space and CPU utilization
– Columns consume memory
– Measures consume CPU
Calculated Columns vs. Measures
15
A great way to think of DAX functions (approx. 200 as of
4-2019) are as members of working groups. This is my
take on those “primary groups:”
DAX Functions: Primary Groups with Examples
16
Primary Group Examples
Text LEFT(), CONCATENATE(), VALUE()
Aggregate AVERAGE(), COUNT(), MAX()
Math / Trig CEILING(), INT(), ROUND()
Date and Time DATE(), DATEVALUE(), YEAR()
Time Intelligence TOTALQTD(), TOTALYTD(), DATESBETWEEN()
Foundation CALCULATE(), ALL(), RELATED(), FILTER()
Let’s Take a Look …
Demo / Walkthrough
Power BI Design Stages: Where Does DAX Fit In?
18
Get Data Visualize
&
Analyze
ModelTransform Publish
&
Collaborate
- Connect
- Import
- Refresh
- Stream
- Shape
- Cleanse
- Rename
- Merge
- Filter
- Relate
- Calculate
- Hide
- Format
- Sort
- Filter
- Slice
- Interact
- Drill
- Configure
- Pin
- Collaborate
- Embed
- Export
- AnalyzeDAX
• Don’t try to memorize DAX functions
• Keep working DAX samples in a reference .pbix
• Name calculations intuitively
• Maintain “support” environments
– Development
– Testing
– Learning (especially samples .pbix file)
• Collect articles and references
As You Learn DAX, a Few Pointers …
19
Introducing Data Analysis eXpressions
(DAX)
Vehicles of delivery: Calculation
types
Calculated columns
Measures
Functions: Groups and examples
Summary
Enjoy the Full Webinar Presentation
21Š2018 Senturus, Inc. All rights reserved.
To view the video recording and download the slide deck
go to
https://senturus.com/resources/power-bi-dax-kickstart/
Visit our website to access our library of free BI
knowledge resources including events, blogs, demos,
whitepapers, other on-demand webinars and our
dashboard gallery
https://senturus.com/senturus-resources/
Š2019 Senturus, Inc. All rights reserved.
https://senturus.com/training/course-schedule-2/
Cyber Sale: 50% Off Instructor-Led Training
Our biggest sale of
the year ends
tomorrow!
$599 $299 for full
day of instructor-led
training
• Extends formal training into your real-world
environment by using your own data/application
• Can work through actual report and data modeling
challenges (co-development)
• Taught on-site or online
• Small groups or individuals
info@senturus.com
888 601 6010
Power BI Mentoring
23Š2018 Senturus, Inc. All rights reserved.
Full Spectrum of Services for BI
WHO WE ARE
Decisions & Actions
Š2019 Senturus, Inc. All rights reserved.
Business Needs
Analysis Ready Data
Bridging the Gap between Data & Decision Making
• Dashboards, reporting and visualizations
• Data preparation and modern data warehousing
• Hybrid BI environments (migrations, security, etc.)
• BI support retainer (expertise on demand)
• Software to enable bimodal BI and platform migrations
• Training and mentoring
Full Spectrum of Services for BI
Š2019 Senturus, Inc. All rights reserved.
27Senturus, Inc. – Proprietary and Confidential
1300+ Clients, 2500+ Projects, 19+ Years
Š2019 Senturus, Inc. All rights reserved.
ADDITIONAL RESOURCES
Upcoming Events
Š2019 Senturus, Inc. All rights reserved.
www.senturus.com/events
www.senturus.com/senturus-resources/
Free Resources
Š2019 Senturus, Inc. All rights reserved.
Power BI Premium Demystified
https://senturus.com/blog/power-bi-premium-demystified/
Creating and Publishing Paginated Reports in Power BI Service
https://senturus.com/blog/creating-and-publishing-paginated-reports-in-power-bi-service/
Power BI Gateway Explained
https://senturus.com/blog/power-bi-gateway-explained/
Training for Power BI, Tableau & Cognos
Š2019 Senturus, Inc. All rights reserved.
https://senturus.com/training/
Thank You!
www.senturus.com
info@senturus.com
888 601 6010
Copyright 2019 by Senturus, Inc.
This entire presentation is copyrighted and may not be
reused or distributed without the written consent of
Senturus, Inc.

Weitere ähnliche Inhalte

Ähnlich wie Power BI DAX Kickstart

Ähnlich wie Power BI DAX Kickstart (20)

What’s New in Cognos Analytics 11.1.4
What’s New in Cognos Analytics 11.1.4What’s New in Cognos Analytics 11.1.4
What’s New in Cognos Analytics 11.1.4
 
IBM Cognos Analytics Reporting vs. Dashboarding: Matching Tools to Business R...
IBM Cognos Analytics Reporting vs. Dashboarding: Matching Tools to Business R...IBM Cognos Analytics Reporting vs. Dashboarding: Matching Tools to Business R...
IBM Cognos Analytics Reporting vs. Dashboarding: Matching Tools to Business R...
 
Beyond PowerPlay: Choose the Right OLAP Tool for Your BI Environment (Cognos...
 Beyond PowerPlay: Choose the Right OLAP Tool for Your BI Environment (Cognos... Beyond PowerPlay: Choose the Right OLAP Tool for Your BI Environment (Cognos...
Beyond PowerPlay: Choose the Right OLAP Tool for Your BI Environment (Cognos...
 
Using Tableau to Gain Actionable Insights: Overview & Demonstration of Visual...
Using Tableau to Gain Actionable Insights: Overview & Demonstration of Visual...Using Tableau to Gain Actionable Insights: Overview & Demonstration of Visual...
Using Tableau to Gain Actionable Insights: Overview & Demonstration of Visual...
 
Our Favorite New Features in Tableau 2019.3
Our Favorite New Features in Tableau 2019.3Our Favorite New Features in Tableau 2019.3
Our Favorite New Features in Tableau 2019.3
 
Cognos 11.1.6 New Features Demo with IBM Offering Manager
Cognos 11.1.6 New Features Demo with IBM Offering ManagerCognos 11.1.6 New Features Demo with IBM Offering Manager
Cognos 11.1.6 New Features Demo with IBM Offering Manager
 
Analyst Alert: Data Modeling is a Required Skill
Analyst Alert: Data Modeling is a Required SkillAnalyst Alert: Data Modeling is a Required Skill
Analyst Alert: Data Modeling is a Required Skill
 
Advanced Analytics in Tableau: Use the Force!, Built-In Functions and 3rd Par...
Advanced Analytics in Tableau: Use the Force!, Built-In Functions and 3rd Par...Advanced Analytics in Tableau: Use the Force!, Built-In Functions and 3rd Par...
Advanced Analytics in Tableau: Use the Force!, Built-In Functions and 3rd Par...
 
TM1 10.2: Developer Productivity with IBM Cognos Performance Modeler
TM1 10.2: Developer Productivity with IBM Cognos Performance ModelerTM1 10.2: Developer Productivity with IBM Cognos Performance Modeler
TM1 10.2: Developer Productivity with IBM Cognos Performance Modeler
 
Enterprise Security: Tableau vs. Power BI
Enterprise Security: Tableau vs. Power BIEnterprise Security: Tableau vs. Power BI
Enterprise Security: Tableau vs. Power BI
 
Maximizing IBM Cognos BI for the Business User: Demonstrations of Built-in Pr...
Maximizing IBM Cognos BI for the Business User: Demonstrations of Built-in Pr...Maximizing IBM Cognos BI for the Business User: Demonstrations of Built-in Pr...
Maximizing IBM Cognos BI for the Business User: Demonstrations of Built-in Pr...
 
Tips for Beginning Cognos Report Studio Authors: Demonstration of Techniques
Tips for Beginning Cognos Report Studio Authors: Demonstration of TechniquesTips for Beginning Cognos Report Studio Authors: Demonstration of Techniques
Tips for Beginning Cognos Report Studio Authors: Demonstration of Techniques
 
Dazzling Tableau Dashboards
Dazzling Tableau DashboardsDazzling Tableau Dashboards
Dazzling Tableau Dashboards
 
Cognos 11.1.3 Overview of the Brand New Release
Cognos 11.1.3 Overview of the Brand New ReleaseCognos 11.1.3 Overview of the Brand New Release
Cognos 11.1.3 Overview of the Brand New Release
 
Self-Service Business Authoring in a Managed Reporting World: IBM Cognos Work...
Self-Service Business Authoring in a Managed Reporting World: IBM Cognos Work...Self-Service Business Authoring in a Managed Reporting World: IBM Cognos Work...
Self-Service Business Authoring in a Managed Reporting World: IBM Cognos Work...
 
A Comparison of Power BI, Tableau & Cognos
A Comparison of Power BI, Tableau & CognosA Comparison of Power BI, Tableau & Cognos
A Comparison of Power BI, Tableau & Cognos
 
Power BI Modeling Use Cases: Desktop to Enterprise with Questions and Answers
Power BI Modeling Use Cases: Desktop to Enterprise with Questions and AnswersPower BI Modeling Use Cases: Desktop to Enterprise with Questions and Answers
Power BI Modeling Use Cases: Desktop to Enterprise with Questions and Answers
 
Metadata Modeling Best Practices with IBM Cognos Framework Manager
Metadata Modeling Best Practices with IBM Cognos Framework ManagerMetadata Modeling Best Practices with IBM Cognos Framework Manager
Metadata Modeling Best Practices with IBM Cognos Framework Manager
 
A Deep Dive into Tableau Dashboard Starters for Salesforce
A Deep Dive into Tableau Dashboard Starters for Salesforce A Deep Dive into Tableau Dashboard Starters for Salesforce
A Deep Dive into Tableau Dashboard Starters for Salesforce
 
SIS Software & Solver BI360 Customer Presentation Nov 2016
SIS Software & Solver BI360 Customer Presentation Nov 2016SIS Software & Solver BI360 Customer Presentation Nov 2016
SIS Software & Solver BI360 Customer Presentation Nov 2016
 

Mehr von Senturus

Mehr von Senturus (20)

Power BI Gateway: Understanding, Installing, Configuring
Power BI Gateway: Understanding, Installing, ConfiguringPower BI Gateway: Understanding, Installing, Configuring
Power BI Gateway: Understanding, Installing, Configuring
 
Cognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & TricksCognos Performance Tuning Tips & Tricks
Cognos Performance Tuning Tips & Tricks
 
Power Automate for Power BI: Getting Started
Power Automate for Power BI: Getting StartedPower Automate for Power BI: Getting Started
Power Automate for Power BI: Getting Started
 
Collaborative BI: 3 Ways to Use Cognos with Power BI & Tableau
Collaborative BI:  3 Ways to Use Cognos with Power BI & TableauCollaborative BI:  3 Ways to Use Cognos with Power BI & Tableau
Collaborative BI: 3 Ways to Use Cognos with Power BI & Tableau
 
Tips for Installing Cognos Analytics 11.2.1x
Tips for Installing Cognos Analytics 11.2.1xTips for Installing Cognos Analytics 11.2.1x
Tips for Installing Cognos Analytics 11.2.1x
 
How to Prepare for a BI Migration
How to Prepare for a BI MigrationHow to Prepare for a BI Migration
How to Prepare for a BI Migration
 
4 Common Analytics Reporting Errors to Avoid
4 Common Analytics Reporting Errors to Avoid4 Common Analytics Reporting Errors to Avoid
4 Common Analytics Reporting Errors to Avoid
 
Extending Power BI Functionality with R
Extending Power BI Functionality with RExtending Power BI Functionality with R
Extending Power BI Functionality with R
 
Take Control of Your Cloud
Take Control of Your CloudTake Control of Your Cloud
Take Control of Your Cloud
 
Using Python with Power BI
Using Python with Power BIUsing Python with Power BI
Using Python with Power BI
 
User-Friendly Power BI Report Nav
User-Friendly Power BI Report NavUser-Friendly Power BI Report Nav
User-Friendly Power BI Report Nav
 
Streamline Cognos Migrations & Consolidations
Streamline Cognos Migrations & ConsolidationsStreamline Cognos Migrations & Consolidations
Streamline Cognos Migrations & Consolidations
 
What’s New in Cognos 11.2.1
What’s New in Cognos 11.2.1What’s New in Cognos 11.2.1
What’s New in Cognos 11.2.1
 
Planning for a Power BI Enterprise Deployment
Planning for a Power BI Enterprise DeploymentPlanning for a Power BI Enterprise Deployment
Planning for a Power BI Enterprise Deployment
 
Power BI Report Builder & Paginated Reports
Power BI Report Builder & Paginated Reports Power BI Report Builder & Paginated Reports
Power BI Report Builder & Paginated Reports
 
Tableau: 6 Ways to Publish & Share Dashboards
Tableau: 6 Ways to Publish & Share DashboardsTableau: 6 Ways to Publish & Share Dashboards
Tableau: 6 Ways to Publish & Share Dashboards
 
Cognos Analytics 11.2 New Features
Cognos Analytics 11.2 New FeaturesCognos Analytics 11.2 New Features
Cognos Analytics 11.2 New Features
 
Azure Synapse vs. Snowflake: The Data Warehouse Dating Game
Azure Synapse vs. Snowflake: The Data Warehouse Dating GameAzure Synapse vs. Snowflake: The Data Warehouse Dating Game
Azure Synapse vs. Snowflake: The Data Warehouse Dating Game
 
Secrets of High Performing Report Development Teams
Secrets of High Performing Report Development TeamsSecrets of High Performing Report Development Teams
Secrets of High Performing Report Development Teams
 
Power BI: Data Cleansing & Power Query Editor
Power BI: Data Cleansing & Power Query EditorPower BI: Data Cleansing & Power Query Editor
Power BI: Data Cleansing & Power Query Editor
 

KĂźrzlich hochgeladen

Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
MarinCaroMartnezBerg
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
amitlee9823
 
Probability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter LessonsProbability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter Lessons
JoseMangaJr1
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
amitlee9823
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
SUHANI PANDEY
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
amitlee9823
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
amitlee9823
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
AroojKhan71
 

KĂźrzlich hochgeladen (20)

Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Surabaya ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night StandCall Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Doddaballapur Road ☎ 7737669865 🥵 Book Your One night Stand
 
FESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdfFESE Capital Markets Fact Sheet 2024 Q1.pdf
FESE Capital Markets Fact Sheet 2024 Q1.pdf
 
Sampling (random) method and Non random.ppt
Sampling (random) method and Non random.pptSampling (random) method and Non random.ppt
Sampling (random) method and Non random.ppt
 
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
Call Girls Jalahalli Just Call 👗 7737669865 👗 Top Class Call Girl Service Ban...
 
Probability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter LessonsProbability Grade 10 Third Quarter Lessons
Probability Grade 10 Third Quarter Lessons
 
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% SecureCall me @ 9892124323  Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
Call me @ 9892124323 Cheap Rate Call Girls in Vashi with Real Photo 100% Secure
 
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Saket (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
Halmar dropshipping via API with DroFx
Halmar  dropshipping  via API with DroFxHalmar  dropshipping  via API with DroFx
Halmar dropshipping via API with DroFx
 
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Bommasandra Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
Vip Mumbai Call Girls Marol Naka Call On 9920725232 With Body to body massage...
 
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
VIP Model Call Girls Hinjewadi ( Pune ) Call ON 8005736733 Starting From 5K t...
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
CebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptxCebaBaby dropshipping via API with DroFX.pptx
CebaBaby dropshipping via API with DroFX.pptx
 
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdfAccredited-Transport-Cooperatives-Jan-2021-Web.pdf
Accredited-Transport-Cooperatives-Jan-2021-Web.pdf
 
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
Junnasandra Call Girls: 🍓 7737669865 🍓 High Profile Model Escorts | Bangalore...
 
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service BangaloreCall Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
Call Girls Begur Just Call 👗 7737669865 👗 Top Class Call Girl Service Bangalore
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
Call Girls in Sarai Kale Khan Delhi 💯 Call Us 🔝9205541914 🔝( Delhi) Escorts S...
 
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al BarshaAl Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
Al Barsha Escorts $#$ O565212860 $#$ Escort Service In Al Barsha
 

Power BI DAX Kickstart

  • 1. POWER BI DAX KICKSTART Overview and Mechanics of Data Analysis eXpressions
  • 2. • Introductions • Introducing Data Analysis eXpressions (DAX) • Vehicles of delivery: calculation types – Calculated columns – Measures • Functions: groups and examples • Summary • Additional resources • Q&A Agenda Š2019 Senturus, Inc. All rights reserved.
  • 3. Presenters Š2019 Senturus, Inc. All rights reserved. Michael Weinhauer Practice Area Director Solutions Architect Senturus, Inc. Bill Pearson Microsoft Business Intelligence Architect Senturus, Inc.
  • 4. Hundreds of Free Resources Š2018 Senturus, Inc. All rights reserved. 4 www.senturus.com/resources/
  • 5. This slide deck is from the webinar: Power BI DAX Kickstart To view the FREE video recording with demos and download this deck, go to: https://senturus.com/resources/power-bi-dax- kickstart/ Like What You See? Š2018 Senturus, Inc. All rights reserved. 5
  • 7. • DAX serves as the language of: – Power BI – Excel Power Pivot – SQL Server Analysis Services Tabular • Initially seems simple, but the learning curve can increase dramatically – and at the worst possible times • DAX comprises programming concepts that will be unfamiliar to many who have worked with SQL and other query languages • We’ll discuss tips in easing the effort required to get to know DAX from the first glimpse Data Analysis eXpressions Language 7
  • 8. • Function calls drive execution • Elements of DAX are derived from: – Excel functions – SQL – MDX • Example of a simple formula UniqueCustomerCount = COUNT(Customer[CustomerKey]) DAX Is an Expression Language 8
  • 9. • The general format – ‘TableName’[ColumnName] • Quotes can be omitted – If TableName does not contain spaces – BEST PRACTICE: Don’t use spaces • TableName can be omitted – Current table is searched for ColumnName – BEST PRACTICE: Always use complete TableName / ColumnName to avoid ambiguity • Brackets for column name cannot be omitted DAX Syntax for Columns 9
  • 10. DAX can be employed in Power BI through a couple of mechanisms: • Calculated columns • Measures Primary Vehicles for DAX: Calculation types 10
  • 11. Example: Calculated column in the Product table that computes the “Gross Profit Margin” for each product Intro_CalCol_Product_Margin = 'Product'[ListPrice]-'Product'[StandardCost] Calculated Column Creation 11
  • 13. Example: Measure in the Product table that computes the Total Quantity (based on Order Quantity in the related Internet Sales table) Intro_Measure_Product_TotalQty = SUM(InternetSales[OrderQuantity]) Measures Creation 13
  • 15. • Calculated columns are best when we need to – Slice or filter on the value • Measures are best when we need to – Calculate percentages – Calculate ratios – Perform complex aggregations – Fully take advantage of filter context • Space and CPU utilization – Columns consume memory – Measures consume CPU Calculated Columns vs. Measures 15
  • 16. A great way to think of DAX functions (approx. 200 as of 4-2019) are as members of working groups. This is my take on those “primary groups:” DAX Functions: Primary Groups with Examples 16 Primary Group Examples Text LEFT(), CONCATENATE(), VALUE() Aggregate AVERAGE(), COUNT(), MAX() Math / Trig CEILING(), INT(), ROUND() Date and Time DATE(), DATEVALUE(), YEAR() Time Intelligence TOTALQTD(), TOTALYTD(), DATESBETWEEN() Foundation CALCULATE(), ALL(), RELATED(), FILTER()
  • 17. Let’s Take a Look … Demo / Walkthrough
  • 18. Power BI Design Stages: Where Does DAX Fit In? 18 Get Data Visualize & Analyze ModelTransform Publish & Collaborate - Connect - Import - Refresh - Stream - Shape - Cleanse - Rename - Merge - Filter - Relate - Calculate - Hide - Format - Sort - Filter - Slice - Interact - Drill - Configure - Pin - Collaborate - Embed - Export - AnalyzeDAX
  • 19. • Don’t try to memorize DAX functions • Keep working DAX samples in a reference .pbix • Name calculations intuitively • Maintain “support” environments – Development – Testing – Learning (especially samples .pbix file) • Collect articles and references As You Learn DAX, a Few Pointers … 19
  • 20. Introducing Data Analysis eXpressions (DAX) Vehicles of delivery: Calculation types Calculated columns Measures Functions: Groups and examples Summary
  • 21. Enjoy the Full Webinar Presentation 21Š2018 Senturus, Inc. All rights reserved. To view the video recording and download the slide deck go to https://senturus.com/resources/power-bi-dax-kickstart/ Visit our website to access our library of free BI knowledge resources including events, blogs, demos, whitepapers, other on-demand webinars and our dashboard gallery https://senturus.com/senturus-resources/
  • 22. Š2019 Senturus, Inc. All rights reserved. https://senturus.com/training/course-schedule-2/ Cyber Sale: 50% Off Instructor-Led Training Our biggest sale of the year ends tomorrow! $599 $299 for full day of instructor-led training
  • 23. • Extends formal training into your real-world environment by using your own data/application • Can work through actual report and data modeling challenges (co-development) • Taught on-site or online • Small groups or individuals info@senturus.com 888 601 6010 Power BI Mentoring 23Š2018 Senturus, Inc. All rights reserved.
  • 24. Full Spectrum of Services for BI WHO WE ARE
  • 25. Decisions & Actions Š2019 Senturus, Inc. All rights reserved. Business Needs Analysis Ready Data Bridging the Gap between Data & Decision Making
  • 26. • Dashboards, reporting and visualizations • Data preparation and modern data warehousing • Hybrid BI environments (migrations, security, etc.) • BI support retainer (expertise on demand) • Software to enable bimodal BI and platform migrations • Training and mentoring Full Spectrum of Services for BI Š2019 Senturus, Inc. All rights reserved.
  • 27. 27Senturus, Inc. – Proprietary and Confidential 1300+ Clients, 2500+ Projects, 19+ Years Š2019 Senturus, Inc. All rights reserved.
  • 29. Upcoming Events Š2019 Senturus, Inc. All rights reserved. www.senturus.com/events
  • 30. www.senturus.com/senturus-resources/ Free Resources Š2019 Senturus, Inc. All rights reserved. Power BI Premium Demystified https://senturus.com/blog/power-bi-premium-demystified/ Creating and Publishing Paginated Reports in Power BI Service https://senturus.com/blog/creating-and-publishing-paginated-reports-in-power-bi-service/ Power BI Gateway Explained https://senturus.com/blog/power-bi-gateway-explained/
  • 31. Training for Power BI, Tableau & Cognos Š2019 Senturus, Inc. All rights reserved. https://senturus.com/training/
  • 32. Thank You! www.senturus.com info@senturus.com 888 601 6010 Copyright 2019 by Senturus, Inc. This entire presentation is copyrighted and may not be reused or distributed without the written consent of Senturus, Inc.