Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am trying to build a tabular cube measure that will always calculate the percentage from the column total even when using a matrix.
In the example attached i would like to get X % of Total and Y % of Toal columns.
The measure should be dynamic and work with regardless of the dimension the user will place in the columns so the option of using Calculate(SUM(Salse_Quantity),ALL(Products[Product Name])) or Calculate(SUM(Salse_Quantity),ALLSELECTED(Products)) is not good enough.
Is there any way to achieve this?
Thanks!
You cannot detect what is on rows or what is on columns in DAX, so you cannot do a true "Column Total". However, something like this, may work for you:
SUM(Salse_Quantity) /
Calculate(SUM(Salse_Quantity)
,Product
,ALLSELECTED()
)
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 17 | |
| 8 | |
| 8 | |
| 7 |