Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
SarveshRealign
New Member

Show everything else

I have the following tables: 

Participants NameTrainings
ATraining-1
ATraining-2
BTraining-2
CTraining-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
1 ACCEPTED SOLUTION
Anand24
Super User
Super User

Hi @SarveshRealign ,

Go through this ~5.5 Min video and you should be able to achieve your functionality of excluding selections. 

PBI_SuperUser_Rank@1x.png  

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 !!!
LinkedIn

View solution in original post

2 REPLIES 2
v-easonf-msft
Community Support
Community Support

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
)

42.png

Please check my sample for more details.

 

Best Regards,
Community Support Team _ Eason

Anand24
Super User
Super User

Hi @SarveshRealign ,

Go through this ~5.5 Min video and you should be able to achieve your functionality of excluding selections. 

PBI_SuperUser_Rank@1x.png  

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 !!!
LinkedIn

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 Power BI update to learn about new features.