Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I would like to request your help to create a measure that calculates the Standard Deviation of a summarized column, I have this table:
Table
| ID | Value |
| A | 2 |
| A | 3 |
| B | 4 |
| B | 5 |
| C | 6 |
| C | 7 |
I need to calculate the Standard Deviation, but I need to do it after sumarizing the values of each ID as follows:
| ID | Sum Value |
| A | 5 |
| B | 9 |
| C | 13 |
So, I just need the measure that gives me the final STDev which would be: 4
Thanks in advance
Solved! Go to Solution.
Hi @Anonymous
Measure =
STDEVX.S ( DISTINCT ( Table1[ID] ), CALCULATE ( SUM ( Table1[Value] ) ) )
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Hi @Anonymous
Measure =
STDEVX.S ( DISTINCT ( Table1[ID] ), CALCULATE ( SUM ( Table1[Value] ) ) )
|
|
Please accept the solution when done and consider giving a thumbs up if posts are helpful. Contact me privately for support with any larger-scale BI needs, tutoring, etc. |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 5 | |
| 5 | |
| 4 | |
| 4 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 12 | |
| 10 | |
| 8 |