The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
Assume that we need to create a hierarchy that has Category, subcategory, and product, based on the data model below:
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])
Solved! Go to Solution.
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
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