Forum Discussion
mrothschild
7 years agoContinued Contributor
calculating standard deviations from Matrix visual
PBIX file is here: https://www.dropbox.com/s/uasonb98zmz41xw/ATV%2C%20growth%20and%20indexing.pbix?dl=0 I have a matrix visual that appears as follows, except for the StdDev column on the right. ...
- 7 years ago
Hi mrothschild,
Please try this measure.
Measure = VAR a = SELECTCOLUMNS ( 'Data', "value", [Value] ) RETURN STDEVX.S ( SUMMARIZE ( 'Data', 'Calendar'[Year], Data[Attribute] ), IF ( [Annual % change] <= 1, [Annual % change], BLANK () ) )
BTW, DO NOT share anything confidential here.
Best Regards,
v-jiascu-msft
7 years agoMicrosoft Employee
Hi mrothschild,
Please try this measure.
Measure = VAR a = SELECTCOLUMNS ( 'Data', "value", [Value] ) RETURN STDEVX.S ( SUMMARIZE ( 'Data', 'Calendar'[Year], Data[Attribute] ), IF ( [Annual % change] <= 1, [Annual % change], BLANK () ) )
BTW, DO NOT share anything confidential here.
Best Regards,
mrothschild
7 years agoContinued Contributor
Thank you!