Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Help - Standard Deviation of Summarized Column

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

IDValue
A2
A3
B4
B5
C6
C7

 

I need to calculate the Standard Deviation, but I need to do it after sumarizing the values of each ID as follows:

 

IDSum Value
A5
B9
C13

 

So, I just need the measure that gives me the final STDev which would be: 4

 

Thanks in advance

1 ACCEPTED SOLUTION
AlB
Super User
Super User

Hi @Anonymous 

Measure =
STDEVX.S ( DISTINCT ( Table1[ID] ), CALCULATE ( SUM ( Table1[Value] ) ) )

 

SU18_powerbi_badge

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.

 

View solution in original post

2 REPLIES 2
AlB
Super User
Super User

Hi @Anonymous 

Measure =
STDEVX.S ( DISTINCT ( Table1[ID] ), CALCULATE ( SUM ( Table1[Value] ) ) )

 

SU18_powerbi_badge

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.

 

Anonymous
Not applicable

Hi @AlB 

Works amazing, Thanks.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors