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
Whitewater100
Solution Sage
4 years agoHi:
I updated the calcs. Please see attached file. I hope this solves your question! Thanks.https://drive.google.com/file/d/1AmZdKZ0R0YYwGR4bpT36QFM8U_yePF7k/view?usp=sharing
I hope this helps!