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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hello - I am wondering it it is possible to create a measure filtered by multiple related records. For example, a contact table is related to an activities table. I would like to count the contacts that have activities with the subject of "call1" and "call2". Where I think I am getting stuck is that it's multiple activities needing to be considered.
Thanks in advance!
Rob
Solved! Go to Solution.
hi @Anonymous
Try this logic:
CALCULATE(<expression>,FILTER('Table',"call1" in VALUES('Table'[subject]) && "call2" in VALUES('Table'[subject]) ))
If you still have the problem, please share some simple sample data and your expected output.
Regards,
Lin
Thanks for the quick reply, but unfortunately not the end result I am expecting. This seems to operate more as an OR statement than an AND statement. I only want to count the count the contacts with both... thoughts?
Thanks again!
Rob
hi @Anonymous
Try this logic:
CALCULATE(<expression>,FILTER('Table',"call1" in VALUES('Table'[subject]) && "call2" in VALUES('Table'[subject]) ))
If you still have the problem, please share some simple sample data and your expected output.
Regards,
Lin
Thanks! This works!
TBH, I don't really understand they syntax here, but it does work!
Rob