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.
Hi! I'm a beginner at PBI and need help calculating the standard deviation of a set of numbers.
I want the standard deviation for the amount of sales grouped by day:
But since my table has multiple rows for the same day, the measure I tried to use is getting this value considering each recorded number.
How could I correct the measure in pbi for obtaining 4.92?
https://www.dropbox.com/s/bwa3i19ubrx3ndt/Standard%20Deviation.pbix?dl=0
Thanks.
Solved! Go to Solution.
Hi,
You can use this measure
Standard Deviation =
STDEVX.P(SUMMARIZE('Table','Table'[Date]),CALCULATE(SUM('Table'[SalesAmount])))
Hi,
You can use this measure
Standard Deviation =
STDEVX.P(SUMMARIZE('Table','Table'[Date]),CALCULATE(SUM('Table'[SalesAmount])))