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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I have a set of organisations and a set of training courses they can complete. I have 20 courses that they can choose from. My data records their organisation name and the training they've carried out (dates, names etc).
There is a particular course they are all supposed to do and I want to narrow down which organisations have not done it. Is there a simple approach to this?
Solved! Go to Solution.
@cookieka , Create measure who has done the course
M1= countrows(filter( Table, Table[Course] in {"Course1"} ) )
Count of org not have done this plot with the organization if needed
M2= countx(values(Table[Organization]), if (isblank([M1]) ,[Organization], blank()) )
@cookieka , Create measure who has done the course
M1= countrows(filter( Table, Table[Course] in {"Course1"} ) )
Count of org not have done this plot with the organization if needed
M2= countx(values(Table[Organization]), if (isblank([M1]) ,[Organization], blank()) )
Thank you - that worked an absolute treat!
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!