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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
I have two columns, each from a different table that are linked. I want to find the count of how many distinct and similar values are between the columns.
For example if one table had a column with values: [chicken, fish, rice, tree, car] and the other table's column had the values [fish, boat, rice, rice, ears, mouse], I would want the count to be 2 because rice and fish show up in both columns.
Edit: I was thinking something along the lines of a distinctcount and an innerjoin. I can't get it to work
Solved! Go to Solution.
Hi @goalie_ ,
You can try a measure
// Given: T1 and T2 that are somehow linked
// meaning a filter can be applied to both
// tables at the same time. We're interested
// in T1[col] and T2[col].
[# Same Values] =
COUNTROWS(
INTERSECT(
VALUES( T1[col] ),
VALUES( T2[col] )
)
)
Best
D
Hi @goalie_ ,
You can also have a look at this article
https://www.sqlbi.com/articles/from-sql-to-dax-joining-tables/
Regards,
Harsh Nathani
Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)
Hi @goalie_ ,
You can try a measure
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.
User | Count |
---|---|
13 | |
11 | |
9 | |
8 | |
8 |