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 want to write a DAX, i have two tables Tablea and tableb both are joined
i need to count and count distnct measure
COUNTID = count(id) based on tablea.id = tableb.id and tablea.type = "Protect"
I need to get count based on the two conditions in DAX
table( id )= tableb ( id ) and Tablea.type = "Protect" on
Thanks
Rams
Solved! Go to Solution.
@ramshoney1225 , Assume both tables has a relation ID column
Try like
calculate(count(tablea[ID]), tablea[type] = "Protect", not(isblank(tableb[ID])))
or
calculate(count(tablea[ID]),filter(tablea, tablea[type] = "Protect" && tablea[ID]= related(tableb[ID])))
Thanks for the update,
I'm able to use the 2nd one , i didnt understand the first one.
If i dont need any hard code filter in that can i use as below right ?
@ramshoney1225 , Assume both tables has a relation ID column
Try like
calculate(count(tablea[ID]), tablea[type] = "Protect", not(isblank(tableb[ID])))
or
calculate(count(tablea[ID]),filter(tablea, tablea[type] = "Protect" && tablea[ID]= related(tableb[ID])))
Thanks for the update,
I'm able to use the 2nd one , i didnt understand the first one.
If i dont need any hard code filter in that can i use as below right ?
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.