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.
Hi i have two related tables, table A and table B. Table A has a column of index. Table B has a subset of that index, but each index can appear multiple times.
How do I count the number of table A rows that do not map to table B? Thanks in advance!
Solved! Go to Solution.
Hi @tainks
Try this to count the number index values in TableA but not in TableB
InA_NotInB = COUNTROWS ( EXCEPT ( VALUES ( TableA[Index] ), VALUES ( TableB[Index] ) ) )
You can place the measure in a Card visual for instance
Hi @tainks
Try this to count the number index values in TableA but not in TableB
InA_NotInB = COUNTROWS ( EXCEPT ( VALUES ( TableA[Index] ), VALUES ( TableB[Index] ) ) )
You can place the measure in a Card visual for instance
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.