Forum Discussion
Anonymous
6 years agoNot applicable
Row Total Average
Hi, I have a matrix table as below , i am able to calculate total by using row subtotal option ,but i want average instead of total for all the feilds below .Can anyone suggest me how to do it ? ...
- 6 years ago
Hi Anonymous ,
We can create a measure as below to work on it.
Measure = IF(ISINSCOPE('Table'[category]),SUM('Table'[count]),AVERAGE('Table'[count]))
v-frfei-msft
Community Support
6 years agoHi Anonymous ,
We can create a measure as below to work on it.
Measure = IF(ISINSCOPE('Table'[category]),SUM('Table'[count]),AVERAGE('Table'[count]))