March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
22 | |
19 | |
16 | |
9 | |
5 |
User | Count |
---|---|
37 | |
29 | |
16 | |
14 | |
12 |