Hi all,
I created 2 tables to show every incident (left) and the describtion (right). What I want to show is a blank table on the right , and if any row of left table is selected, the description will be shown up. How can I achive the result?
Thank you in advance!
Solved! Go to Solution.
Hi @babyjb123 ,
Could you please tell me that is your problem solved? As @TomMartens said, the ISFILTERED function is the key.
However, you also first have to make sure that there's no relationship between your two table visuals. About more details of relationships, please refer to
Create and manage relationships in Power BI Desktop - Power BI | Microsoft Learn
And then create a measure.
Measure = IF(ISFILTERED('Table'[Number]),1)
Put the measure into the visual-level filters, and set up show items when the values is 1.
Below is the result, when any row of the left table visual is selected, the right visual will display the data.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @babyjb123 ,
Could you please tell me that is your problem solved? As @TomMartens said, the ISFILTERED function is the key.
However, you also first have to make sure that there's no relationship between your two table visuals. About more details of relationships, please refer to
Create and manage relationships in Power BI Desktop - Power BI | Microsoft Learn
And then create a measure.
Measure = IF(ISFILTERED('Table'[Number]),1)
Put the measure into the visual-level filters, and set up show items when the values is 1.
Below is the result, when any row of the left table visual is selected, the right visual will display the data.
Best Regards,
Stephen Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hey @babyjb123 ,
you can try to create a measure, that is leveraging the function ISFILTERED: ISFILTERED – DAX Guide in combination with a relationship column if a relationship exists.
Hopefully, this provides you with an idea of how to tackle your challenge.
Regards,
Tom
Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!
User | Count |
---|---|
119 | |
75 | |
66 | |
51 | |
49 |
User | Count |
---|---|
183 | |
101 | |
80 | |
79 | |
77 |