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.
Hello,
I have 2 related table, and I'd like to calculate the number of rows in table without any values in table 2.
==> For the example below, the result should be 2 (rows 3 and 4 are not in table 2).
Table 1
1 |
2 |
3 |
4 |
Table 2
1 |
1 |
2 |
2 |
2 |
Everything I tried didn't give me the expected result, could you help me?
Thank you!
Solved! Go to Solution.
@Ncio in case I understand your model is like this:
Then, you can create this measure:
Measure =
COUNTROWS(
FILTER(
Table1,
ISEMPTY(RELATEDTABLE(Table2))
)
)
In case it solved your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
@Ncio in case I understand your model is like this:
Then, you can create this measure:
Measure =
COUNTROWS(
FILTER(
Table1,
ISEMPTY(RELATEDTABLE(Table2))
)
)
In case it solved your question please mark this as a solution for community visibility. Appreciate Your Kudos 🙂
Thank you!
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.