Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 45 | |
| 44 | |
| 20 | |
| 19 |
| User | Count |
|---|---|
| 73 | |
| 71 | |
| 34 | |
| 33 | |
| 31 |