Forum Discussion
JajatiDev
Helper II
4 years agoPareto Chart with DAX Function
Hi, This is a follow-up to my previous query. I am trying to create a DAX function to convert the below table into a Pareto Chart. x-axis: SC_TAT days y-axis: CountOfOrderLines Please assi...
- Anonymous4 years ago
Hi JajatiDev ,
Please check the formulas.
Cumulative = SUMX(FILTER(ALLSELECTED('Table'),'Table'[SC_TAT (Days)]<=MAX('Table'[SC_TAT (Days)])),'Table'[CountOfOrderLines])Total = SUMX(ALLSELECTED('Table'),'Table'[CountOfOrderLines])Percentage = format(SUMX('Table','Table'[CountOfOrderLines])/[Total],"percent")Pbix as attached.
Best Regards,
Jay
LucasPete
2 years agoRegular Visitor
Hi,
How to build a pareto chart for one column?
I have a column - "Failures", in which errors occur repeatedly. On the column chart, unique names of the failure should appear on the X axis, and on the Y axis, the number of times it repeated should appear. The pareto chart will be a line of the % occurrence of a given failure from the entire table.
Thanks for the help in advance