Loading...

Why DAX Can't Directly Reference Hierarchies in Power BI?

Why DAX Can't Directly Reference Hierarchies in Power BI?

 ðŸ“Œ What is a Hierarchy in Power BI?

A hierarchy in Power BI is a structured arrangement of related columns that allows users to drill down from a higher-level category to a more detailed level.

🔹 Example of a Hierarchy

Consider a Date Hierarchy:

  • Year → Quarter → Month → Day

Or a Geography Hierarchy:

  • Country → State → City


🚫 Why Can’t DAX Refer to a Hierarchy or Hierarchy Level?

DAX can only reference columns, measures, and tables, but not hierarchy objects directly. This is because a hierarchy is a UI feature in Power BI, not an actual data model object.

However, you can reference each level of the hierarchy individually using its column name.

✅ Alternative Approach Using DAX

If you want to calculate something for a specific level in a hierarchy, you must use the underlying column:

🔸 Example: Total Sales by Year (from Date Hierarchy)

TotalSalesByYear = CALCULATE(SUM(Sales[Revenue]), VALUES(Sales[Year]))

This formula references Sales[Year], not the entire hierarchy.


Published on:

Learn more
Power Platform , D365 CE & Cloud
Power Platform , D365 CE & Cloud

Dynamics 365 CE, Power Apps, Powerapps, Azure, Dataverse, D365,Power Platforms (Power Apps, Power Automate, Virtual Agent and AI Builder), Book Review

Share post:

Related posts

Convert tabular data to crosstab – Power Query

Convert tabular data to crosstab – Power Query. Let us understand this simple but useful task in Microsoft Excel. Download sample file R...

8 hours ago

How to Rebind a Power BI Report to a different Semantic Model using Power BI Studio

The default option to rebind a Power BI report is to use the Power BI REST API. This works well, but for a lot of people this can be quite int...

1 day ago

New mapping and location analytics capabilities in Microsoft Power BI

The Microsoft Azure Maps visual in Microsoft Power BI enables all Power BI users to visualize and analyze their data on maps to uncover patter...

2 days ago
Stay up to date with latest Microsoft Dynamics 365 and Power Platform news!
* Yes, I agree to the privacy policy