Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.