Forum Discussion

mrothschild's avatar
mrothschild
Continued Contributor
7 years ago
Solved

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. ...
  • v-jiascu-msft's avatar
    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 () )
        )
    

    calculating-standard-deviations-from-Matrix-visual

     

    BTW, DO NOT share anything confidential here.

     

    Best Regards,