Forum Discussion

michaelu1's avatar
michaelu1
Advocate II
4 years ago
Solved

Matrix subtotal average

I have a matrix with columns of dollar amounts.   If I turn on row subtotals then it adds the amounys up on the bottom.   How can I change that to show me the average on the bottom instead.
  • Anonymous's avatar
    Anonymous
    4 years ago

    Hi michaelu1 ,

    I created a sample pbix file(see attachment) for you, please check whether that is what you want. You can create a measure as below to get it by using the function ISINSCOPE():

     

    Measure = 
    IF (
        ISINSCOPE ( 'Table'[product] ) && ISINSCOPE ( 'Table'[item] ),
        SUM ( 'Table'[sales] ),
        AVERAGEA ( 'Table'[sales] )
    )

     

    If the above one can't help you get the desired result, please provide some sample data in your tables (exclude sensitive data) with Text format and your expected result with backend logic and special examples. It is better if you can share a simplified pbix file. You can refer the following link to upload the file to the community. Thank you.

    How to upload PBI in Community

    Best Regards