Forum Discussion
Anonymous
5 years agoNot applicable
Display Table Visual When Something is Selected in Another Table Visual
Hello, Is it possible keeping Table2 as blank (display nothing) until anything is selected in Table1? A Measure is applied in Table1, the Measure cannot be applied to Slicer or break...
- 5 years ago
Hi Anonymous ,
Through your description, I tried an example and create flag measure by the following formula:flag = IF(ISFILTERED('Table 2'[ID]),1,0)Then apply it into table2’s visual filter:
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-yalanwu-msft
Community Support
5 years agoHi Anonymous ,
Through your description, I tried an example and create flag measure by the following formula:
flag = IF(ISFILTERED('Table 2'[ID]),1,0)
Then apply it into table2’s visual filter:
The final output is shown below:
Best Regards,
Community Support Team_ Yalan Wu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous5 years agoNot applicable
Thank you!