Forum Discussion
Anonymous
7 years agoNot applicable
Overall - Average - Multiple Measures
Hello I created manually one new column per each "MonthYear" such as "Dec2017", "Jan2018", "Feb2018 for my matrix visual. Is there way to calculate a overall Average ? I have a matrix as below a...
- 7 years ago
Anonymous ,
You may check the post below.
Anonymous
7 years agoNot applicable
Hello Ashish
I only found this wasy i can not unpivot my table, otherwise it will break my other relationships
I already the put my need in my previous comment.
I would like to do an overall average measure based on the measure per month
v-chuncz-msft
Community Support
7 years agoAnonymous ,
You may try the measure below.
Measure =
AVERAGEX (
UNION ( ROW ( "Value", [Measure 1] ), ROW ( "Value", [Measure 2] ) ),
[Value]
)
- Anonymous7 years agoNot applicable
Hello
Thanks for the help
Does the "Union" work with only two measures? I m trying to include more than 2 and it is now working
- Anonymous7 years agoNot applicable
Hello v-chuncz-msft
I was able to replicate your measure in my matrix. Thanks for that.
Now, would it be possible to create a overall avg based on the column? to display on bottom of the matrix?
- v-chuncz-msft7 years ago
Community Support
Anonymous ,
You may check the post below.