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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.

Reply
Marcin
Helper V
Helper V

Filter table by table

Hi,

 

I am looking for soultion for this case.

 

Assume I have two tables like this :

Table1   Table2 
      
IdName  IdValue
1Adam  540
2John  645
3Peter  355
4Megan  442

 

 

What I would like to get is table table one to be filtered out with ID values from table2 . ( In sql I would use "ID is not in" )

 

So my result will be : 

 

IdName
1Adam
2John

 

So values with IDs 3 and 4 are filtered out becasue they exist in column Id of table2 

1 ACCEPTED SOLUTION
AlB
Community Champion
Community Champion

Hi @Marcin 

You can create a new calculated table:

NewTable =
FILTER ( Table1, NOT Table1[Id] IN DISTINCT ( Table2[Id] ) )

View solution in original post

1 REPLY 1
AlB
Community Champion
Community Champion

Hi @Marcin 

You can create a new calculated table:

NewTable =
FILTER ( Table1, NOT Table1[Id] IN DISTINCT ( Table2[Id] ) )

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors