This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
I have created PBI summarized table and I need another column DAX Formula
column grant total divided by rows total NOT Sum of amount (later will add multiple columns)
like 5 /43 , 31/43 , 7/43 how to get this its dynamic
Solved! Go to Solution.
Please try the measure below:
% of Total =
DIVIDE(
SUM('YourTable'[Amount]),
CALCULATE(
SUM('YourTable'[Amount]),
ALLSELECTED('YourTable')
)
)
Please try the measure below:
% of Total =
DIVIDE(
SUM('YourTable'[Amount]),
CALCULATE(
SUM('YourTable'[Amount]),
ALLSELECTED('YourTable')
)
)
I need to create two tables to get calculation of value and %, how we can get one table instead of multiple.
this is example my tables contains huge dataset like region/country/state and etc..
example
Measure 1 = SUM(Table[amount]
Measure 2 =
% of Total =
DIVIDE(
SUM('YourTable'[Amount]),
CALCULATE(
SUM('YourTable'[Amount]),
ALLSELECTED('YourTable')
)
)
Hi,
First write an explicit measure
Total = sum(Data[Amount])
Then use a visual calculation.
Hi,
First write an explicit measure
Total = sum(Data[Amount])
Then use a visual calculation.
Hii @RajK2
You need row value ÷ overall grand total (dynamic). Create a measure, not a column:
% of Grand Total =
DIVIDE(
SUM('Table'[Amount]),
CALCULATE(
SUM('Table'[Amount]),
ALL('Table')
)
)
This keeps the row context (China, International, USCAN) but removes filters to get full grand total (43).
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 32 | |
| 26 | |
| 23 | |
| 22 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 45 | |
| 28 | |
| 24 | |
| 22 |