Forum Discussion
Average X
- 5 years ago
HI matdel ,
In that case you can modify your average caluclation DAX as follows:
AVERAGE RESULT = CALCULATE(AVERAGE('Quality control results'[Result]), ALL('Quality control'))
You don't have to use AVERAGEX to achieve this. Because it evaluates an expression for each row. You need a single average value for your RESULT column therefore you need to use AVERAGE.
Thanks,
Pragati
HI matdel ,
You can simply add a average line using the Analytics Pane feature on a Line chart visual. You don't need a calculation for it. See an example below:
Thanks,
Pragati
Yes, thanks, but actually after I need also to calculate UCL and LCL from the average, to put them on the graphic also
- Pragati115 years agoSuper User
HI matdel ,
In that case you can modify your average caluclation DAX as follows:
AVERAGE RESULT = CALCULATE(AVERAGE('Quality control results'[Result]), ALL('Quality control'))
You don't have to use AVERAGEX to achieve this. Because it evaluates an expression for each row. You need a single average value for your RESULT column therefore you need to use AVERAGE.
Thanks,
Pragati
- matdel5 years agoHelper I
Thank you!! it works 🙂