Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello, I've been struggling with calculating the standard deviation for different hierarchies of data.
My data is structured as follows: each row represents a value for a type (A-F). Types A-F belong to either Group 1 or Group 2 (Type A is Group 1, Types B-F are Group 2). I would like to create a DAX measure that calculates standard deviation at both the Type and Group level. The measure would be used in a matrix that has a Group --> Type row hierarchy.
For instance, I want the DAX measure to calculate the standard deviation for Group 1 and Group 2 (by summing up all the values in each Group for each date, and calculating the standard deviation of the summed series). But when I expand the matrix, the mezasure should calculate the standard deviation for Type A, standard deviation for Type B, etc.
Any help would be greatly appreciated.
Solved! Go to Solution.
Hi @kne29
please try
Result =
STDEVX.S ( VALUES ( 'Table'[Date] ), CALCULATE ( SUM ( 'Table'[Value] ) ) )
Hi @kne29
please try
Result =
STDEVX.S ( VALUES ( 'Table'[Date] ), CALCULATE ( SUM ( 'Table'[Value] ) ) )
Thank you so much! This worked for me.
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
23 | |
8 | |
7 | |
6 | |
6 |
User | Count |
---|---|
28 | |
11 | |
11 | |
10 | |
6 |