Forum Discussion
mrothschild
Continued Contributor
7 years agocalculating 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
Microsoft Employee
7 years agoHi 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
Continued Contributor
7 years agoThank you!