You can use DAX and the Stacked Area Chart to produce a visual totalling 100%
With a starting point of the following data
Use DAX to calculate the daily quality rating percentage, by dividing the value by the sum of ratings across all Quality Levels (Good, Outstanding etc)
Quality Rating Percentage =
DIVIDE(
SUM(Locations[Rating]),
CALCULATE(
sum(Locations[Rating]),
ALL(Locations[Quality Level])
)
)
Add the stacked area chart to view the daily change of quality with like
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…