Mastering DAX Video Course

This is the video course version of the Mastering DAX workshop.
DAX is the native language of the semantic model in Microsoft Fabric, Power BI, Analysis Services, and Power Pivot for Excel. The training is aimed at users and developers of these products who want to learn and master the DAX language.

The goal of the course is to teach all the features of DAX, providing the knowledge to write formulas for common and advanced business scenarios. The video course consists of 32 hours of lectures, including demo files to reproduce the steps shown in the videos. You can watch the videos at anytime and the system will keep track of your progress. In the course, you can download the materials for all demos and exercises.

Students have access to a private discussion area where they can interact with the instructors and ask questions about the lectures and exercises.

Collapse allCurriculum

  • Presentation of Mastering DAX 3rd Edition

    • Presentation of Mastering DAX 3rd Edition
      FREE
  • Exercises, labs, slides, and demos

    • Exercises, labs, slides, and demos
    • Download the demo files
  • Introduction to learning DAX

    • Introduction to learning DAX
      FREE
    • Why is DAX even a thing?
      FREE
    • Understanding how the data model affects your DAX code
    • Introducing the demo data model
    • Conclusions
    • Links
  • Introducing DAX

    • Introducing DAX
      FREE
    • Introduction
      FREE
    • Understanding DAX calculations

      • Understanding DAX calculations
        FREE
      • DAX data types
        FREE
      • DAX Operators
        FREE
      • Conditional statements
      • Tables and tuples constructors and the IN operator
    • Understanding calculated columns and measures

      • Introducing calculated columns
        FREE
      • Introducing measures
        FREE
      • Introducing aggregators and iterators
      • Choosing between calculated columns and measures
    • Introducing variables
    • Formatting DAX code
    • Using common DAX functions

      • Aggregation functions
      • Logical functions
      • Table functions
      • Information functions
      • Mathematical and trigonometric functions
      • Statistical and financial functions
      • Text functions
      • Conversion functions
      • Date and time functions
      • Relational functions
      • Window functions
      • Time intelligence functions
    • Introducing visual calculations
      FREE
    • Introducing user-defined functions
      FREE
    • Handling errors in DAX expressions

      • Conversion errors
      • Arithmetic operations errors
      • Empty or missing values
      • Intercepting and generating errors
    • Conclusions
    • Links
  • Introducing the filter context and CALCULATE

    • Introducing the filter context and CALCULATE
      FREE
    • Introduction
    • Introducing axis and coordinates
    • Introducing the filter context
    • Introducing CALCULATE
    • Introducing KEEPFILTERS
    • VALUES as an alternative to KEEPFILTERS
    • Introducing REMOVEFILTERS
    • Understanding how totals are computed in Power BI
    • Conclusions
  • Manipulating the filter context

    • Manipulating the filter context
      FREE
    • Introduction
    • Country as a percentage of the continent
    • Percentage over a selected brand
    • Highlighting the best brands
    • Choosing how to remove filters
    • Computing percentage and visually representing growth compared to the previous year
    • Computing returning customers
    • Conclusions
  • Introducing the row context and the context transition

    • Introducing the row context and the context transition
      FREE
    • Introduction
    • Introducing the row context

      • Introducing the row context
      • Using the row context with iterators
      • Understanding column values and column references
      • Using aggregators inside the row context
    • Introducing the context transition

      • Introducing the context transition
      • Computing customers who purchased more than two products
      • Understanding automatic CALCULATE around measures
    • Using the row context with relationships

      • Using the row context with relationships
      • Computing sales in the first week
      • Computing the total order out of a denormalized model
    • Understanding nested row contexts

      • Nested row contexts
      • Nested row contexts on different tables
      • Nested row contexts on the same table
      • Nested row contexts using EARLIER
    • Understanding the differences between FILTER and CALCULATE
    • Conclusions
  • Understanding basic table functions

    • Understanding basic table functions
      FREE
    • Introduction
    • Introducing table functions
    • Introducing the EVALUATE syntax
    • Understanding FILTER
    • Understanding ALL and ALLEXCEPT
    • Computing Top categories and subcategories
    • Understanding VALUES, DISTINCT, and the blank row
    • Understanding SELECTCOLUMNS and ADDCOLUMNS
    • Understanding SUMMARIZE
    • Introducing SUMMARIZECOLUMNS
    • Computing the best store by product
    • Using tables as scalar values
    • Introducing ALLSELECTED
    • Conclusions
    • Links
  • Understanding variables

    • Understanding variables
      FREE
    • Introduction
    • Introducing the VAR syntax
    • The importance of variable names
    • Understanding that variables are constant
    • Understanding the scope of variables
    • Using table variables
    • Understanding when variables are evaluated
    • Common patterns using variables
    • Conclusions
  • Understanding the evaluation context

    • Understanding the evaluation context
      FREE
    • Introduction
    • CALCULATE filters are tables
    • Introducing expanded tables
    • Introducing data lineage and TREATAS
    • Understanding the context transition

      • Understanding the context transition
      • Row context and filter context, a recap
      • Understanding how the context transition works
      • Using the context transition with duplicated rows
      • Using the context transition in calculated columns
      • Understanding active and inactive columns in the row context
      • Summing up the context transition
    • Using the context transition with iterators

      • Using the context transition with iterators
      • Using iterators
      • Understanding iterator cardinality
      • Leveraging context transitions in iterators
    • Introducing CALCULATE modifiers

      • Introducing CALCULATE modifiers
      • Understanding USERELATIONSHIP
      • Understanding CROSSFILTER
      • Understanding KEEPFILTERS
    • Introducing the ALL* family of functions
    • Understanding the evaluation order of CALCULATE
    • Understanding circular dependencies
    • Conclusions
    • Links
  • Working with the evaluation context

    • Working with the evaluation context
      FREE
    • Introduction
    • Using different ways to express a filter
    • Using CALCULATE in different contexts
    • Filtering columns versus filtering tables
    • Understanding the active relationship
    • Understanding KEEPFILTERS with iterators
    • Managing selections using SELECTEDVALUE and VALUES
    • Computing end-of-year gifts for top customers
    • Using many-to-many relationships
    • Conclusions
    • Links
  • Understanding user-defined functions

    • Understanding user-defined functions
      FREE
    • Introduction
    • Introducing functions
    • Understanding parameter-passing modes
    • Understanding dynamic binding of columns
    • Model-dependent and model-independent functions
    • Naming conventions for user-defined functions
    • Examples of using functions

      • Currency conversion
      • Customers in a year
      • Global variables
    • Conclusions
    • Links
  • Working with tables

    • Working with tables
      FREE
    • Introduction
    • Using CALCULATETABLE
    • Using ADDCOLUMNS
    • Using SELECTCOLUMNS
    • Using SUMMARIZE and SUMMARIZECOLUMNS
    • Using GROUPBY
    • Reading Power BI queries
    • Using CROSSJOIN
    • Using UNION
    • Using INTERSECT
    • Using EXCEPT
    • Using TOPN
    • Using GENERATE and GENERATEALL
    • Using NATURALINNERJOIN and NATURALLEFTOUTERJOIN
    • Using tables as filters

      • Implementing OR conditions
      • Narrowing sales computation to customers from the first year
      • Computing the number of new customers
    • Creating calculated tables with ROW, DATATABLE and GENERATESERIES
    • Conclusions
    • Links
  • Understanding window functions

    • Understanding window functions
      FREE
    • Introduction
    • Understanding INDEX

      • Understanding INDEX
      • Handling ties
      • Introducing PARTITIONBY
      • Omitting the source table
    • Introducing OFFSET
    • Introducing apply semantics
    • Understanding OFFSET
    • Understanding WINDOW
    • Understanding WINDOW and apply semantics
    • Understanding apply semantics
    • Understanding MATCHBY
    • Understanding RANK and ROWNUMBER
    • Common window function errors

      • Duplicate rows in the source table
      • Circular dependency in calculated columns
      • Ambiguous row context
    • Conclusions
    • Links
  • Time intelligence calculations

    • Time intelligence calculations
      FREE
    • Introduction
    • Introducing time intelligence

      • Introducing time intelligence
        FREE
      • Introducing the behavior of classic time intelligence functions
      • Understanding the automatic REMOVEFILTERS over Date
      • Understanding filter-keep columns
      • Introducing calendars
      • Time intelligence functions are table functions
    • Building a date table

      • Building a date table
      • Building a Date table for a Gregorian calendar
      • Building a Date table for a monthly calendar
      • Building a Date table for fiscal calendars based on months
      • Building a Date table for weekly calendars
      • Working with multiple date columns
    • Using calendars

      • Using calendars
      • Defining calendars
      • Introducing time-related columns
    • Understanding the behavior of time intelligence functions

      • Understanding the behavior of time intelligence functions
      • Understanding the behavior of classic time intelligence
      • Understanding the behavior of calendar-based time intelligence
      • Understanding filter clearing
      • Understanding lateral shift and hierarchical shift
    • Understanding time intelligence functions

      • Understanding time intelligence functions
      • Understanding DATEADD and SAMEPERIODLASTYEAR
      • Understanding the same-distance-from-parent algorithm
      • Time-related columns with DATEADD and SAMEPERIODLASTYEAR
      • Understanding PARALLELPERIOD and whole period functions
      • Using interval-to-date calculations
      • Mixing time intelligence functions
      • Using semi-additive measures with FIRSTDATE and LASTDATE
      • Working with opening and closing balances
    • Conclusions
    • Links
  • Understanding visual calculations

    • Understanding visual calculations
      FREE
    • Introduction
    • Introducing visual calculations
    • Understanding the visual shape

      • Understanding the visual shape
      • Understanding densification
    • Understanding the visual context

      • Understanding the visual context
      • Understanding EXPAND, COLLAPSE, EXPANDALL, and COLLAPSEALL
      • Navigating the lattice of the virtual table
      • Accessing the virtual table through ROWS, COLUMNS, and ROWPAGES
      • Using ROWS, COLUMNS, and ROWPAGES together
      • Understanding reset and direction
      • Using CALCULATE in visual calculations
    • Understanding PREVIOUS, NEXT, FIRST, LAST
    • Understanding LOOKUP, LOOKUPWITHTOTALS, and auto-expand
    • Understanding RUNNINGSUM
    • Understanding ISATLEVEL
    • Understanding MOVINGAVERAGE
    • Understanding RANGE
    • Computing the moving average over the last six months
    • Computing growth over the same period last year
    • Comparing sales over the average of siblings
    • Conclusions
    • Links
  • Understanding calculation groups

    • Understanding calculation groups
      FREE
    • Introduction
    • Introducing calculation groups
    • Understanding calculation group precedence
    • Using ISSELECTEDMEASURE and SELECTEDMEASURENAME
    • Intercepting multiple selections and no selection
    • Activating calculation items in DAX
    • Using calculation groups to apply global filters
    • Visual calculations and calculation groups
    • Conclusions
    • Links
  • Inspecting the filter context and managing hierarchies

    • Inspecting the filter context and managing hierarchies
      FREE
    • Introduction
    • Using HASONEVALUE and ISINSCOPE
    • Introducing ISFILTERED and ISCROSSFILTERED
    • Understanding the differences between VALUES and FILTERS
    • Using ISEMPTY
    • Understanding arbitrarily shaped filters
    • Computing Percentages over Hierarchies
    • Handling parent/child hierarchies
    • Conclusions
  • Authoring queries

    • Authoring queries
      FREE
    • Introduction
    • Understanding EVALUATE

      • Understanding EVALUATE
      • Introducing the EVALUATE syntax
      • Using DEFINE VAR
      • Using DEFINE MEASURE
      • Using DEFINE TABLE
      • Using DEFINE COLUMN
      • Using DEFINE FUNCTION
      • Using DEFINE VISUAL SHAPE and MPARAMETER
    • Using ROW to test measures
    • Using SUMMARIZECOLUMNS
    • Using ISONORAFTER and ISAFTER
    • Using ADDMISSINGITEMS
    • Using SUBSTITUTEWITHINDEX
    • Using SAMPLE
    • Conclusions
  • Advanced DAX concepts

    • Advanced DAX concepts
      FREE
    • Introduction
    • Understanding expanded tables

      • Understanding RELATED
      • Using RELATED in calculated columns
      • Understanding the difference between table filters and column filters
      • Using table filters in measures
      • Understanding the difference between table expansion and filtering
      • Context transition in expanded tables
    • Understanding ALLSELECTED and shadow filter contexts

      • Understanding ALLSELECTED and shadow filter contexts
      • ALLSELECTED in SUMMARIZECOLUMNS
      • Introducing shadow filter contexts
      • Learning best practices for ALLSELECTED
    • Understanding bidirectional relationships and ambiguity

      • Understanding bidirectional relationships and ambiguity
      • Understanding ambiguity in active relationships
        FREE
      • Solving ambiguity in non-active relationships
    • Understanding auto-exists and non-empty

      • Understanding auto-exists and non-empty
      • Introducing auto-exists
      • Introducing non-empty
      • Introducing value filter behavior
      • SUMMARIZECOLUMNS best practices
    • Conclusions
    • Links
  • Practicing DAX with advanced examples

    • Practicing DAX with advanced examples
      FREE
    • Introduction
    • Working with a budget and different granularities

      • Working with a budget and different granularities
      • Using static allocation
      • Using a newly-created dimension
      • Using a many-to-many cardinality relationship
      • Understanding calculations at different granularities
      • Using dynamic allocation for all the dimensions
      • Showing budget and sales together
    • Working with semi-additive calculations

      • Working with semi-additive calculations
      • Scenario 1: Using LASTDATE
      • Scenario 2: Using the last date of any customer in the current period
      • Scenario 3: Using the last date of any customer, including previous time periods
      • Scenario 4: Using the last date for each customer, including previous time periods
    • Computing same-store sales

      • Filtering stores open on every year selected
      • Filtering stores open in the first or last selected year
      • Using calculation groups to select the filter algorithm
    • Conclusions
    • Links
  • Conclusions

    • Conclusions
Student Rating
4.9
592 ratings
4-star Reviews (20 of 300)
  • Marek Busch (Feb 25, 2026)

    It was very helpful to understand DAX better. Yet I think a bit more focus on syntax is needed. Especially as in the end the reality always requires a span of solutions for one problem. But I must say with the help of the course I was able to simplify a lot my existing PBI solutions.

  • Ruben Balderrama Barbeitia (Sep 24, 2025)

    Overall Verdict Mastering DAX stands out as a comprehensive, detail‑rich, and highly actionable resource. Its blend of theory, real‑world scenarios, and hands‑on labs equips analysts and developers with the expertise needed to solve complex business problems using DAX. With a modest refresh of the Calculation Groups and inclusion of User‑Defined Functions, the course will remain at the cutting edge of Power BI analytics. Bottom line: an excellent course that delivers deep value today and, with the suggested tweaks, will stay relevant for the foreseeable future.

    • Hi Ruben, Thank you for your review. You're right, and we are working on refreshing the video course at the moment! Stay tuned. CC
      Reply by Claire Costa (Sep 25, 2025)
  • Håkan Wikenstål (Oct 8, 2024)

    The knowledge and enthusiasm of Marco and Alberto around DAX is really impressive :) Due to the complexity and difference of DAX compared to other ways of coding and syntaxes, I found some of the lectures quite hard to follow. Maybe it could be good in some looooong chapters to have exercises spread out inside a chapter instead of only in the end. I don't feel as a Master of DAX, but at least I know a lot more know about what is possible (and not possible) to do :)

  • Jacopo Bosotti (Jul 1, 2024)

    The course is very complete and allowed me, since the begging, to use DAX in my power BI reports and bring them to the next level. Although, I think there are same basic concepts especially for the data model part which are omitted here and I would like to deep dive in.

    • Hi Jacopo, We dedicated an entire video course to data modeling. Please look for the "Data Modeling for Power BI" video course and start with the free trial to see if that is what you were looking for! Thanks, Claire
      Reply by Claire Costa (Jul 1, 2024)
  • Catherine (Apr 10, 2024)

    Very helpful, Great demonstrations!

  • Zhongxue Li (Dec 7, 2023)

    Well organized, very informative and the examples/excises are helpful while progressing the course. Thank you!

  • Arisha Khamitova (Nov 29, 2023)

    Very broad explanation for some formulas DAX. However, there are some features and solutions to them that are outdated. In some case it is dificult to understand the content due to not understanding well the meaning of some words such as filter context, iterators etc. I think there should be some vocabularly or introduction to this specific words.

  • FERNANDO CAPACE (Jun 7, 2023)

    Dense but good!

  • Frank Peeters (Apr 4, 2023)

    Great course, have to do it a few more times to master everything.

  • Francisco Fuerte (Jul 12, 2022)

    Muy buen contenido.

  • Martina Voigt (Apr 13, 2022)

    It is okay.

  • Coro Lamoré (Jun 18, 2021)

    Clear explanation of the different DAX items. It has helped me create dax formulas. The difficulty for me now is to make DAX formulas that have nothing to do with Sales, but with analysis of delivered products of technical modifications per engineering department. I just have to figure it out, because there is no one in the department who can help me with DAX, but during the course I was already able to apply it in practice.

  • Wout Kattenpoel (Sep 14, 2020)

    Great course with a great attention to detail and a easy to follow step-wise learning module. The explanations of the presenters are very clear. The excercises however often included subjects and code of future lectures, that made some excercises nearly impossible to solve with the current knowledge. This demotivates a bit, as solving excercises correctly makes you want to continue, whereas continuous struggling with the excerices is a tad annoying.

    • Hi Wout, just a clarification: the Advanced exercise we have in the initial chapters have been included for people who start the course with existing knowledge of DAX. For this reason, they have additional prerequisites. Only the Basic exercise should be completed with the knowledge provided in each section, the Advanced one should be considered optional. We included them because we had the request for more challenging exercises in the initial sections. However, we have to better explain this in the video course, we are working on that and it should be fixed soon. Thanks for your feedback!
      Reply by SQLBI (Sep 15, 2020)
  • Andradhige Tharindhu Anuradha (Aug 17, 2020)

    Finally I am done. Learned a lot of DAX concepts. Thanks

  • Jonathan Owney (Aug 13, 2020)

    This is the most comprehensive course you will find on DAX anywhere. I found it helps to read along in the book ("The Definitive Guide to DAX") and then watch the videos as I go. The book mirrors the course content and order almost exactly. The one thing I hope they improve on are the exercises. For most modules there are one to three exercises but for some there are none. I would definitely understand the content and retain the knowledge better if there were more examples to work out for each module. While some people who take this course can apply the knowledge directly to there work others, like myself, don't work with DAX in our days jobs but eventually want to so the more exercises we can try the better. It could even benefit from quiz's along the way and a test at the end.

Would you prefer a classroom course?

This video course is based on a classroom course we teach all around the world. If you prefer a classroom learning experience, take a look at the dates below for a list of our upcoming classroom courses!
 New York City, NY, US Apr 8-10, 2026
New York City
 Copenhagen, DK May 5-7, 2026
Copenhagen
 Baltimore, MD, US May 27-29, 2026
Baltimore
 Zürich, CH Jun 10-12, 2026
Zürich
 Berlin, DE Jun 15-17, 2026
Berlin
 Amsterdam, NL Jun 30-Jul 2, 2026
Amsterdam