Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
I have a stacked column chart with two categories in the series/legend (under 65 and over 65). It shows a count of people in each of the two series.
I also have a date heirarchy on the x axis.
I need the series to display data labels showing count AND percent of total for each column (not percent of grand total).
I have created a measure using DAX to calculate the percent of total and added this to the detail section of the data labels. This works well for a single stacked column, but when I add the date heirarchy it shows percent of grand total, not percent of each column.
Thanks
Solved! Go to Solution.
This solution assumes that your model has a date table (best practice). The concept is to keep the Month filter context while clearing all other filters originating within the visual.
Percent Stream2 =
DIVIDE (
DISTINCTCOUNT ( Table1[ID] ),
CALCULATE (
DISTINCTCOUNT ( Table1[ID] ),
ALLSELECTED (),
VALUES ( 'Date'[Month] )
)
)
Proud to be a Super User!
This solution assumes that your model has a date table (best practice). The concept is to keep the Month filter context while clearing all other filters originating within the visual.
Percent Stream2 =
DIVIDE (
DISTINCTCOUNT ( Table1[ID] ),
CALCULATE (
DISTINCTCOUNT ( Table1[ID] ),
ALLSELECTED (),
VALUES ( 'Date'[Month] )
)
)
Proud to be a Super User!
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
10 | |
10 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |