Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

Dynamically show data in table when another visualisation is selected

I have a pie chart showing total income based on three different platforms.  You can then break the platform down to database, so underneath the pie I have a table showing database and total income....
  • AnthonyTilley's avatar
    7 years ago

    you can use the hasonefilter function and then rplace with blank if not true 

     

    in the code below replace sum('Table'[amt]) with the measure you are showing in your table 

    measure = if(HASONEFILTER('Table'[platform]),sum('Table'[amt]),BLANK())