Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.

Reply
Anonymous
Not applicable

hierarchy with measures??!!

Assume that we need to create a hierarchy that has Category, subcategory, and product, based on the data model below: 1.png

 

 

we all know that creating hierarchy is possible with adding a calculated column with RELATED() function to the table with the lowest granularity, here the Product table: 

                           - To the Product table, add a column that uses ProductSubcategory =                             RELATED(ProductSubcategory[ProductSubcategoryName])

                          - To the Product table, add a column that uses ProductCategory = RELATED(ProductCategory[Product Category Name])

 

My question is :

 

will it work with creating measures as well? like below: 

                          - To the Product table, add a calculated measure that uses ProductSubcategory =                             RELATED(ProductSubcategory[ProductSubcategoryName])

                         - To the Product table, add a calculated measure that uses ProductCategory = RELATED(ProductCategory[Product Category Name])

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi elahemeydani,

 

The RELATED function needs a row context; therefore, it can only be used in calculated column expression, where the current row context is unambiguous, or as a nested function in an expression that uses a table scanning function. A table scanning function, such as SUMX, gets the value of the current row value and then scans another table for instances of that value. 

 

So to use RELATED() in measures, you must nest it in a table scanning function.

 

Reference: https://msdn.microsoft.com/en-us/query-bi/dax/related-function-dax

 

Regards,

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi elahemeydani,

 

The RELATED function needs a row context; therefore, it can only be used in calculated column expression, where the current row context is unambiguous, or as a nested function in an expression that uses a table scanning function. A table scanning function, such as SUMX, gets the value of the current row value and then scans another table for instances of that value. 

 

So to use RELATED() in measures, you must nest it in a table scanning function.

 

Reference: https://msdn.microsoft.com/en-us/query-bi/dax/related-function-dax

 

Regards,

Jimmy Tao

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors