Forum Discussion

gauri's avatar
gauri
Icon for Helper III rankHelper III
5 years ago
Solved

how to display values in matrix without affecting another columns value from different table

Hi,   I have matrix visual , where i have months in my column sections , sales person and types in row section, Actual and targets in the values sections. only the targets are from different table ...
  • v-yingjl's avatar
    5 years ago

    Hi gauri ,

    To get the correct result in matrix, you need to extract a separate type table first:

    Type Table = DISTINCT('Target table'[Type])

    Create relationship between the type table and the target table:

    Create a measure like this to calculate the actual values:

    Actual =
    CALCULATE (
        SUM ( 'Actual table'[Sales] ),
        FILTER (
            ALL ( 'Actual table' ),
            'Actual table'[Type] IN DISTINCT ( 'Type Table'[Type] )
        )
    ) + 0
    

    Now the matrix can show the correct value:

    Attached a sample file in the below, hopes to help you.

     

    Best Regards,
    Community Support Team _ Yingjie Li
    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.