Forum Discussion
Identifying Duplicates and getting a count from two different tables.
- Anonymous2 years ago
Hi JChouris ,
Because there are two tables, you can create relationships between them.
Create and manage relationships in Power BI Desktop - Power BI | Microsoft Learn
Then create a meaure.
Duplicate Count = COUNTX ( FILTER ( ALL ( Table ), Table[UniqueID] = SELECTEDVALUE ( Table2[UniqueID] ) ), Table[UniqueID] )How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ RongtieIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi JChouris ,
Because there are two tables, you can create relationships between them.
Create and manage relationships in Power BI Desktop - Power BI | Microsoft Learn
Then create a meaure.
Duplicate Count =
COUNTX (
FILTER ( ALL ( Table ), Table[UniqueID] = SELECTEDVALUE ( Table2[UniqueID] ) ),
Table[UniqueID]
)
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired output and pbix file without privacy information (or some sample data) .
Best Regards
Community Support Team _ Rongtie
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.