Recent Searches
Category

Microsoft Power BI

Category

Microsoft Copilot Courses

Category

AI for Business

Category

Microsoft Windows 11 Courses

Category

Microsoft 365

Category

Microsoft Excel

Category

Excel Specialist

Category

Microsoft Project

Category

R Programming

Category

Python

Category

Power Apps

Category

SQL

Category

SharePoint

Category

Microsoft Teams

Category

Power Automate

Category

Microsoft Visio

Category

Microsoft PowerPoint

Category

Microsoft Word

Category

Microsoft Outlook

Category

Adobe InDesign Courses

Category

Adobe Photoshop Courses

Category

Adobe Illustrator Courses

Category

Adobe Premiere Pro Training

Category

Adobe After Effects Training

Category

Adobe Acrobat Courses

Category

Adobe Captivate Training

Category

Adobe Animate Training

Category

Canva Courses

Category

HTML Courses

Category

WordPress

Category

Professional Development

Category

Microsoft Access

Category

Webinars

Course

Power BI Beginner

Course

Copilot for M365

Course

Windows 11 End User Course

Course

Excel Beginner

Course

Financial Modelling

Course

Project Beginner

Course

R Programming Beginner

Course

Python Beginner

Course

Power Apps Beginner

Course

SQL Beginner

Course

SharePoint Beginner

Course

Teams Essentials

Course

Visio Essentials

Course

PowerPoint Level 1

Course

Word Intermediate

Course

Word Beginner

Course

Word Advanced

Course

Microsoft Outlook Beginner to Intermediate

Course

InDesign Lite

Course

Photoshop Lite

Course

Illustrator Training Intro

Course

Premiere Training Intro

Course

After Effects Training Intro

Course

Acrobat Essentials

Course

Captivate Training

Course

Animate Training Intro

Course

Canva AI

Course

HTML Training Intro

Course

Achieving Leadership & Success

Course

Microsoft Access Essentials

Course

Copilot for M365 On Demand

Course

Power BI Intermediate

Course

Copilot for Word

Course

ChatGPT Beginner

Course

Microsoft 365 Beginner

Course

Excel Intermediate

Course

Analysis and Dashboards

Course

Project Intermediate

Course

R Programming Intermediate

Course

Python Intermediate

Course

Power Apps Intermediate

Course

SQL Intermediate

Course

SharePoint Intermediate

Course

PowerPoint Level 2

Course

InDesign Training Intro

Course

Photoshop Training Intro

Course

Acrobat Forms

Course

Anger Management & Negotiation Skills

Course

Copilot for M365 Live Online

Course

Power BI Advanced

Course

Copilot for Excel

Course

AI Prompting Fundamentals

Course

Microsoft 365 Intermediate

Course

Excel Advanced

Course

Excel VBA

Course

Project Advanced

Course

R Programming Advanced

Course

Python Advanced

Course

Power Apps Intermediate | Power Automate + Power BI Integration

Course

SharePoint Advanced (Site Owner)

Course

InDesign Training Advanced

Course

Assertiveness & Confidence

Course

Microsoft Access Advanced

Course

Power BI DAX

Course

Copilot for PowerPoint

Course

Excel Expert

Course

Machine Learning in R

Course

Power Apps Advanced

Course

SharePoint Advanced (Document Governance)

Course

Building Resilience

Course

Copilot for Outlook and Teams

Course

Coaching and Mentoring

Course

Illustrator Training Advanced

Course

Premiere Basics Training

Course

Advanced After Effects Training

Course

Canva Beginners

Course

WordPress Essentials

Course

Communications

Course

AI for Business Leaders and Managers

Course

Photoshop Training Advanced

Course

Advanced Premiere Training

Course

Canva Intermediate

Course

Communications & Quality Client Service Training

Course

InDesign Interactivity Training

Course

Canva Advanced

Course

Critical Thinking and Problem Solving

Course

InDesign Accessibility Training

Course

Cultural Diversity in the Workplace

Course

Microsoft Outlook Advanced

Course

Embracing Change

Course

SQL Advanced

Course

Growing Emotional Intelligence

Course

Planner Premium

Course

Minute Taking

Course

Excel Tables and Pivot Tables

Course

Power Automate Beginner

Course

Performance Management

Course

Data Transformation with Power Query

Course

Excel Macro Mastery

Course

Power Automate Intermediate

Course

Persuasion and Negotiation Skills

Course

Power BI Desktop Advanced Reporting

Course

Presentation Skills and Public Speaking

Course

Data Visualisation with Power BI Desktop

Course

Practical Project Management

Course

Respect, Equity and Diversity (RED)

Course

Resumé Writing and Interview Skills

Course

Stress Management

Course

Team Leadership, Management and Development

Course

Time Management Intensive

Course

Train the Trainer

Course

Write Effective Business Documents

Course

Dealing with Difficult People

Course

Managing Difficult Conversations

Course

Managing the Virtual Workplace

Course

Customer Service Training

Course

Technical Writing

Importance of DAX in Power BI

Matt Cymbalak | Mar 29, 2018
Computer screen with graph

If you are not a consistent user of Microsoft Power BI you are likely unfamiliar with the term “DAX”, however that doesn’t mean that you haven’t been using it! Data Analysis Expressions or DAX is the library providing users with an array of methods to analyse and shape data, and is a core component of SQL Server Analysis Services, Power Pivot in Excel and Power BI Desktop. A good understanding of DAX can make report authoring more simple and more powerful. However, without a functional language background it can often be overwhelming for beginners and even some seasoned veterans to understand the importance of DAX in Power BI.

 

So what is DAX?

First of all, DAX is mostly used to populate a new column in a table based on numbers, texts and related data. Also, like Excel (filing formulas up/down/right/left or table formulas) you write a DAX expression once for the column and it is evaluated for each row. Each time the data is refreshed the calculation is performed. Also DAX is commonly used in measures, a value (often numeric) that is used in a visual or table of your report.

The value is calculated every time the visual is refresh and the expression applies to that cell or element of the visual. So, one measure may be calculated many times within the one visual, under different contexts. Therefore, a valuable capability of DAX is the ability to modify that context to view data in a different way. A simple example of a measure is to calculate an average or total, and can be given a specific context such as a product colour, month of the year or any other attribute in the data model.

 

What’s so important about DAX?

Because it’s so simple to create a new Power BI Desktop file and import some data into it. It is also relatively simple to create reports without using any DAX formulas at all. But, the difficulty comes when you need to analyze data and related data elements in the model (such as growth percentage across product categories rankings and statistical outcomes over different date ranges). The more capable Business Intelligence creator, it is inevitable that you’ll need to learn and use DAX regularly. DAX formulas provide this capability and many other important capabilities as well. Learning how to create effective DAX formulas will help you extract the most useful information from your data. When you get the information you need, you can begin to solve real business problems that affect everything from your bottom line to the happiness of your clients.

 

Important things to know about DAX

1.Don’t worry about learning all functions in the beginning



DAX has many possible functions, and it can be hard to know where to start. Focus on the basic functions first:

SUM, AVERAGE, MIN, MAX

COUNT, COUNTROWS

CALCULATE

FILTER

IF


2.Learn the concepts

 

Instead of spending your time rote learning functions spend your time learning the core concepts and patterns of the language. This is the fastest and best way to learning DAX. Build a library of important DAX information and work in iterations. DAX may look like Excel functions but the underlying theory is very, very different. These fundamentals of the language must be understand early in the learning process.

 

 
3.Keep your functions as readable as possible



The nature of DAX functions means having a lot of calculations happening on a single line. Therefore, keeping your code legible is a priority. Delete unnecessary elements, use descriptive names, and be explicit with your references.

 

Object Names, Columns and Measures

  • If you don’t need it, delete it
  • Keep internal column names hidden
  • Rename columns, use calculated columns & measures to define user-friendly names
  • Use explicit measures were possible

 



4.Sort your measures by category



Have a mental template for the different types of calculated measures that you’ll encounter during the code process. Instead of starting over from scratch each time, you’ll already be halfway there with a rough outline for your function.

 

Define Measures in Categories:

  • Simple aggregates
  • Time variances
  • Ratios & differentials
  • Business – specific calculations

 

Learning DAX in Power BI can be confusing and challenging for new users and veterans alike. Hopefully after reading this article the language of DAX is a little less frightening.

Trusted Nationwide by Leading Organisations

at Nexacu, we're proud to be the trusted training partner for hundreds of leading organisations accross Australia and New Zealand. From government departments to top corporates, we help teams upskill and succeed everyday

  • 400+ companies rely on Nexacu for team training
  • Trusted by federal, state, and local government agencies
  • Delivering training across 9 countries

Why Nexacu?

Books Icon

Step by Step Courseware

Custom workbook included with a step by step exercises

Facility Image 2
Facility Image 3
Facility Image 1

Refresh Icon

Free Refresher

Resit your course for free within 6 Months

More than 1,300 Business trust Nexacu

Trusted by Business

Procured by Government

Procured by Goverment

Reviews Not Found

Valued by Individuals