Forum Discussion
mol_ad
2 years agoFrequent Visitor
Cumulative Total
I am trying to create a Pareto Chart using Dax Formulas for the set of 5 metrics in a column (Error Column below)...I have created the following Dax Measures: Error Volume = Data from the data sourc...
Jihwan_Kim
Super User
2 years agoHi,
Please check the below picture and the attached pbix file.
WINDOW function (DAX) - DAX | Microsoft Learn
Running total: =
CALCULATE (
SUM ( 'Follow-Up Team'[Error Volume] ),
WINDOW (
1,
ABS,
0,
REL,
ALL ( 'Follow-Up Team' ),
ORDERBY (
CALCULATE ( SUM ( 'Follow-Up Team'[Error Volume] ) ), DESC,
'Follow-Up Team'[Errors], ASC
),
,
,
MATCHBY ( 'Follow-Up Team'[Errors] )
)
)
ratio: =
DIVIDE (
[Running total:],
CALCULATE ( SUM ( 'Follow-Up Team'[Error Volume] ), ALL ( 'Follow-Up Team' ) )
)