Forum Discussion
Anonymous
5 years agoNot applicable
Matrix Table: Average in Row and Sum in Column Header
Hi everyone, I have a matrix table, where I calculate the average per row using a measure. But in the column header, I need to sum the average values. Here is an example of what I would like to ac...
- 5 years ago
Hi Anonymous,
Create a measure as below;
Measure = IF(ISINSCOPE('Table'[Date]),'Table'[M_SUMOEE],SUMX(VALUES('Table'[Machine]),'Table'[M_SUMOEE]))And you will see:
For the related .pbix file,pls see attached.
Best Regards,
KellyDid I answer your question? Mark my post as a solution!
v-kelly-msft
5 years agoCommunity Support
Hi Anonymous,
Create a measure as below;
Measure = IF(ISINSCOPE('Table'[Date]),'Table'[M_SUMOEE],SUMX(VALUES('Table'[Machine]),'Table'[M_SUMOEE]))
And you will see:
For the related .pbix file,pls see attached.
Best Regards,
Kelly
Kelly
Did I answer your question? Mark my post as a solution!
Anonymous
2 years agoNot applicable
You just offered the answers without asking more!! Excellent!
Will learn another new skill, appreciate that 🙂