This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi,
I have a Line and stacked Column Chart. It shows total Values and the Columns are grouped by a category.
Now I want to show the single category values as a percentage of the total value for each column.
In my picture you can see that the total Value for the selected column is 2462 and the selected category has a value of 1199. I would like the percentage to substitude the category value, instead of 1199 it would be 48.7% for this case.
Is there a way to achieve this?
Best regards
Noah
Solved! Go to Solution.
Add this measure to the tooltip:
Category % =
DIVIDE (
SUM ( Table[Anzahl Abrufscheine] ),
CALCULATE ( SUM ( table[Anzahl Abrufscheine] ), ALL ( Table[Farzzeugtyp] ) )
)
Proud to be a Super User!
Paul on Linkedin.
Add this measure to the tooltip:
Category % =
DIVIDE (
SUM ( Table[Anzahl Abrufscheine] ),
CALCULATE ( SUM ( table[Anzahl Abrufscheine] ), ALL ( Table[Farzzeugtyp] ) )
)
Proud to be a Super User!
Paul on Linkedin.
@noah44 , assume you are using a measure, Create a new measure for % of sub total
divide([measure], calculate([measure], removefilter(Table[category]))
@amitchandak thanks for the reply!
I am not using a measure. I tried your measure anyways but it just gives out 1 (100%) for each category
Check out the April 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 |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 61 | |
| 35 | |
| 30 | |
| 23 | |
| 22 |