Forum Discussion

hashtag_pete's avatar
hashtag_pete
Helper V
5 years ago
Solved

Dynamic table

Hello all,    I need some swarm intelligence 🙂   I have a table like this:  Entity Partner Value A B 200 A B 100 A C 200 B A -200 B A -100 B A 500 B A -1...
  • Anonymous's avatar
    Anonymous
    5 years ago

    hashtag_pete 
    You cannot achieve this if you want to use the cell in matrix 1 as the filter to change matrix 2. 

     

    For your requirement, you could create a distinct table for the partner column, and use it to create another slicer to be used for matrix 2. 

     

    Table 2 = DISTINCT('Table'[Partner])
    m2 value measure= CALCULATE(SUM('Table'[Value]),FILTER('Table',[Entity]=SELECTEDVALUE('Table 2'[Partner])))

     

     

    Paul Zheng _ Community Support Team
    If this post helps, please Accept it as the solution to help the other members find it more quickly.