This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I have the following tables:
| Participants Name | Trainings |
| A | Training-1 |
| A | Training-2 |
| B | Training-2 |
| C | Training-3 |
| List of All Trainings |
Training-1 |
| Training-2 |
| Training-3 |
| Training-4 |
| Training-5 |
I want to create a visual: when I select Participants A, I want to see all the Trainings he has not participated instead of seeing the Trainings he particpated.
When I click A, I want to see something like this:
| Trainings Not Participated |
| Training-3 |
| Training-4 |
| Training-5 |
Solved! Go to Solution.
Hi @SarveshRealign ,
Go through this ~5.5 Min video and you should be able to achieve your functionality of excluding selections.
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!! Proud To Be a Super User !!! |
Hi, @SarveshRealign
Create a measure as below, and apply it to 'filters on this visual'. (Note that there is no need to establish a relationship between these two tables)
flag =
IF (
NOT (
SELECTEDVALUE ( Table2[List of All Trainings] ) IN VALUES ( Table1[Trainings] )
),
1,
0
)
Please check my sample for more details.
Best Regards,
Community Support Team _ Eason
Hi @SarveshRealign ,
Go through this ~5.5 Min video and you should be able to achieve your functionality of excluding selections.
Give a Thumbs Up if this post helped you in any way and Mark This Post as Solution if it solved your query !!! Proud To Be a Super User !!! |
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 11 | |
| 9 | |
| 9 | |
| 8 | |
| 8 |
| User | Count |
|---|---|
| 48 | |
| 27 | |
| 25 | |
| 24 | |
| 22 |