Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi,
I am looking for soultion for this case.
Assume I have two tables like this :
| Table1 | Table2 | ||||
| Id | Name | Id | Value | ||
| 1 | Adam | 5 | 40 | ||
| 2 | John | 6 | 45 | ||
| 3 | Peter | 3 | 55 | ||
| 4 | Megan | 4 | 42 |
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 :
| Id | Name |
| 1 | Adam |
| 2 | John |
So values with IDs 3 and 4 are filtered out becasue they exist in column Id of table2
Solved! Go to Solution.
Hi @Marcin
You can create a new calculated table:
NewTable = FILTER ( Table1, NOT Table1[Id] IN DISTINCT ( Table2[Id] ) )
Hi @Marcin
You can create a new calculated table:
NewTable = FILTER ( Table1, NOT Table1[Id] IN DISTINCT ( Table2[Id] ) )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!