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.
Hi anybody able to assist i want to change my filter from "OR" to "AND" condition i have tested the Measure command many times but it does not seem to work. The table image show the blank spaces which i do not want to see .
@joeheng123 - Did one of these answer your question. If so, please accept as an answer, otherwise @ me. Thanks.
@joeheng123 , Try grade measure like
measure =
var _cnt = calculate(distinctcount(Table[subject]),allselected(Table))
return
maxx(filter(summarize(Table,Table[Name], Table[Subject], Table[Grade] ,"_1", calculate(distinctcount(Table[subject]),allexcept(Table,Table[Name]))),[_1]=_cnt),[Grade])
@joeheng123 - I created an AND slicer once, https://community.powerbi.com/t5/Quick-Measures-Gallery/Patient-Cohort-AND-Slicer/m-p/391883#M130