Forum Discussion
Standard deviation across the entire range
- 10 years ago
Hi rockonron,
Based on my understanding, you want to add a line in a column chart to display standard deviation values for all profits, right?
In your scenario, you can create a measure use STDEV.P( ) function like below:
Standard deviation = CALCULATE( STDEV.P(Sheet4[profit]), ALLSELECTED( Sheet4[customer]) )
Then place this measure in Line values property like below:
If you have any question, please feel free to ask.
Best Regards,
Qiuyun Yu
Hi rockonron,
Based on my understanding, you want to add a line in a column chart to display standard deviation values for all profits, right?
In your scenario, you can create a measure use STDEV.P( ) function like below:
Standard deviation = CALCULATE( STDEV.P(Sheet4[profit]), ALLSELECTED( Sheet4[customer]) )
Then place this measure in Line values property like below:
If you have any question, please feel free to ask.
Best Regards,
Qiuyun Yu
- rockonron10 years agoFrequent Visitor
Thanks v-qiuyu-msft thats perfect, have applied it to some test data and seems to work as planned.