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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
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] ) )
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 39 | |
| 35 | |
| 33 | |
| 32 | |
| 29 |
| User | Count |
|---|---|
| 136 | |
| 96 | |
| 77 | |
| 67 | |
| 65 |