Forum Discussion

javiernavarro's avatar
javiernavarro
New Member
7 years ago
Solved

Filters between visualizations

Hello everyone,   I have two differents visualizations. In one of them (table) I have this column   STORES Store1 Store2 Store3 Store4   In the other visualization (bar chart) i have the sa...
  • v-cherch-msft's avatar
    7 years ago

    Hi javiernavarro 

     

    You may create a slicer table and use it as slicer.Then create a measure like below.Attached the sample file for reference.

    Sales 2018 =
    CALCULATE (
        SUM ( Table1[Sales] ),
        FILTER (
            Table1,
            Table1[Year] = 2018
                && Table1[Store Branch] <> SELECTEDVALUE ( 'Table'[Store Branch] )
        )
    )

    Regards,

    Cherie