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! Request now
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 ?
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.