Forum Discussion
Anonymous
5 years agoNot applicable
Help - Average and Standard Deviation from a Summarized Column based on Another
Hi, I would like to request your help with the following inquiry, I need to create two measures that allow me to calculate the Average and Standard Deviation based on the following scenario: ...
daxer-almighty
Solution Sage
5 years agoHere are your measures:
[Average] =
AVERAGEX(
DISTINCT ( T[ID] ),
CALCULATE( SUM[Value] )
)
[Standard Dev.] =
STDEVX.S(
DISTINCT ( T[ID] ),
CALCULATE( SUM[Value] )
)