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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register 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])))
User | Count |
---|---|
11 | |
9 | |
6 | |
5 | |
4 |