Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Solved! Go to Solution.
Can you try this measure:
Did I answer your question? Please Like and Mark my post as a solution if it solves your issue. Thanks.
Appreciate your Kudos !!!
Proud to be a Super User!
Thanks for your replies @ALLUREAN and @amitchandak
_Faults per Day and _Mean - Faults per Day are both measures, I modified each to;
and
but both produce a 0.00 result.
Year | MonthName | _Selected EOMonth | _DistinctWO | _Faults per Day | _Mean - Faults per Day |
2017 | Jan | 31 | 212 | 6.84 | 0.57 |
2017 | Feb | 28 | 193 | 6.89 | 0.57 |
2017 | Mar | 31 | 217 | 7.00 | 0.58 |
2017 | Apr | 30 | 249 | 8.30 | 0.69 |
2017 | May | 31 | 229 | 7.39 | 0.62 |
2017 | Jun | 30 | 259 | 8.63 | 0.72 |
2017 | Jul | 31 | 271 | 8.74 | 0.73 |
2017 | Aug | 31 | 258 | 8.32 | 0.69 |
2017 | Sep | 30 | 224 | 7.47 | 0.62 |
2017 | Oct | 31 | 241 | 7.77 | 0.65 |
2017 | Nov | 30 | 212 | 7.07 | 0.59 |
2017 | Dec | 31 | 272 | 8.77 | 0.73 |
I'm looking for the Standard Deviation for _Faults per Day. In Excel, STDEV for _Faults per Day returns 0.75.
Thank you.
Hi,
I used the measure that proposed earlier and get this result, check the file here. For 2017 STDEV is 0.75. I just remove the filter for month (ALL function) if you want to have the same value in each month in case you will show months also in the table
https://www.dropbox.com/s/pafc51sst6ggvuu/STDEV_%28allure-analytics.com%29.pbix?dl=0
Proud to be a Super User!
Can you try this measure:
Did I answer your question? Please Like and Mark my post as a solution if it solves your issue. Thanks.
Appreciate your Kudos !!!
Proud to be a Super User!
Many thanks @ALLUREAN.
Once I got the values into a column in the table opposed to using a measure, it worked perfectly.
@M0n5ta09 , Try like
calculate(Stddev.p(Table[_Mean - Faults per Day]), allexcept(table[Year]))
Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.