Forum Discussion
Anonymous
6 years agoNot applicable
How to generate multiple tables depending on another visualization ?
Hello everyone ! I'm having an issue to resolve this : I have a visualization (a bubble map). I want to be able when selecting a value (a bubble) in this visualization to generate multiple tables...
- 6 years ago
Hi Anonymous ,
Sorry for that, but based on my research, we can only control the data to show or hide in multi table visual by using following measure in visual filter,but we did not find an effective way to generate tables in the report view dynamically.
CanShow = IF(SELECTEDVALUE('Table'[Column1])in FILTERS('Table'[Column1]),1,BLANK())
Best regards,
v-lid-msft
Community Support
6 years agoHi Anonymous ,
Sorry for that, but based on my research, we can only control the data to show or hide in multi table visual by using following measure in visual filter,but we did not find an effective way to generate tables in the report view dynamically.
CanShow = IF(SELECTEDVALUE('Table'[Column1])in FILTERS('Table'[Column1]),1,BLANK())
Best regards,
- Anonymous6 years agoNot applicable
Thank you for your answer