Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Greering Members .
im trying to build a "stacked" or "clustered" column chart where i can add set different year in my Bar .
i made a little exemple of what im trying to acheive :
let's Say i have a total of 5000 Workers .
here is my table for my A+ workers :
and that's what im trying to acheive , the pink bar (Dunno if there is a custom visual that can help me build something similar ) :
Thanks all in advance .
Solved! Go to Solution.
@Anonymous You could check for third-party visuals.
Also, you could check if R visuals might suffice - https://community.powerbi.com/t5/R-Script-Showcase/bd-p/RVisuals
Also, there are Python visuals.
There are also SVG visuals you can create - https://community.powerbi.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&filter=location&location=forum-board:QuickMeasuresGallery&q=svg (scroll down on that page)
You could create your own custom visual - https://powerbi.microsoft.com/en-us/developers/custom-visualization/
Finally, last but not least you could try the Charticulator! - https://charticulator.com/
HI @Anonymous,
You can try to use the following calculate table formula to summary two table records but column power bi visuals seem not support to directly display the legend on the data label.
Summary =
UNION (
SELECTCOLUMNS (
'A+',
"Category",
[Year] & "-" & [A+ Worker],
"Percent", [Percent],
"Source", "A+ Workers"
),
SUMMARIZE (
Table,
"Category", SUMX ( Table, [Workers] ),
"Percent", 1,
"Source", "Total"
)
)
Perhaps you can try to create a R script to manly plot them on the data label.
Regards,
Xiaoxin Sheng
@Anonymous You could check for third-party visuals.
Also, you could check if R visuals might suffice - https://community.powerbi.com/t5/R-Script-Showcase/bd-p/RVisuals
Also, there are Python visuals.
There are also SVG visuals you can create - https://community.powerbi.com/t5/forums/searchpage/tab/message?advanced=false&allow_punctuation=false&filter=location&location=forum-board:QuickMeasuresGallery&q=svg (scroll down on that page)
You could create your own custom visual - https://powerbi.microsoft.com/en-us/developers/custom-visualization/
Finally, last but not least you could try the Charticulator! - https://charticulator.com/
@Anonymous , I doubt a visual like that
Check custom visual -https://appsource.microsoft.com/en-us/marketplace/apps?product=power-bi-visuals
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
96 | |
69 | |
45 | |
40 | |
30 |
User | Count |
---|---|
154 | |
94 | |
62 | |
42 | |
41 |