- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Data label percentage of bar total
Hello,
I need help with creating a stacked bar / column chart with data labels showing percentages of the bar / column total and not the total for the entire chart. We also need to have the height / length of the bar / column reflect the absolute value. Our data is structured in a way similar to:
Serial Number | Size | Returned? |
1 | 45 | Yes |
2 | 45 | No |
3 | 44 | Yes |
4 | 45 | Yes |
5 | 46 | No |
6 | 46 | No |
7 | 45 | No |
8 | 45 | No |
9 | 47 | Yes |
10 | 44 | No |
The bar chart has "Size" in the Y-axis and count of "Serial Number" in the X-axis. The "Returned?" field is added as a legend. The desired outpoot should like:
Ideally, we will have the percetage as a data label, but having it in tooltips would also be acceptable.
Thanks for your help!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @naskoiliev ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Percentage =
VAR _part =
COUNT ( 'Table'[Serial Number] )
VAR _psize =
CALCULATE (
COUNT ( 'Table'[Serial Number] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Size] = SELECTEDVALUE ( 'Table'[Size] )
)
)
RETURN
DIVIDE ( _part, _psize )
Best Regards
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @naskoiliev ,
I created a sample pbix file(see the attachment), please check if that is what you want.
Percentage =
VAR _part =
COUNT ( 'Table'[Serial Number] )
VAR _psize =
CALCULATE (
COUNT ( 'Table'[Serial Number] ),
FILTER (
ALLSELECTED ( 'Table' ),
'Table'[Size] = SELECTEDVALUE ( 'Table'[Size] )
)
)
RETURN
DIVIDE ( _part, _psize )
Best Regards
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Thanks so much for the help and detailed info!
It's not quite I wanted as the bars now add to 100% and don't show the absolute value. However, I swapped the Y-axis and Tooltips measures, and now I have a workable result. I would have preferred to have the percentages as data labels rather than as tooltips, but this gets the job done as well.
Thanks again!

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
04-13-2024 10:54 PM | |||
05-23-2024 05:43 AM | |||
10-20-2023 09:46 AM | |||
06-04-2024 04:28 AM | |||
05-02-2024 10:56 AM |
User | Count |
---|---|
131 | |
102 | |
85 | |
53 | |
46 |