Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more
Hi,
due to complexity of my data modell, two tables with same fields have no relationship.
However in the report, I still want the fields Product of each table to filter each other.
How can this be achieved by creating a new product column that filters the other field of the other table?
Thank you.
Solved! Go to Solution.
@thhmez7 ,
If they do not have any relationship, create a slicer on one table say table 1
so measure for table 1 is
countrows(Table1)
use this in visual with any column of Table 1
Measure for table 2
countrows(Filter(Table2, Table2[product] in values(Table1[product]) ))
Option 2
You need to have a table with all products like
product = distinct(Union(distinct(Table1[product ]), distinct(Table2[product ])) )
Join with both tables and filter
You could create a product Table containing all the items you need to have.
Then add to model and add relationship
@thhmez7 ,
If they do not have any relationship, create a slicer on one table say table 1
so measure for table 1 is
countrows(Table1)
use this in visual with any column of Table 1
Measure for table 2
countrows(Filter(Table2, Table2[product] in values(Table1[product]) ))
Option 2
You need to have a table with all products like
product = distinct(Union(distinct(Table1[product ]), distinct(Table2[product ])) )
Join with both tables and filter
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!
Check out the July 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 30 | |
| 28 | |
| 22 | |
| 21 | |
| 19 |
| User | Count |
|---|---|
| 44 | |
| 31 | |
| 18 | |
| 18 | |
| 16 |