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.
I've a dataset similar to the one below. What I want to do is to create a mesure to calculate the number of projects that have more than 40% of it's rows as certified.
I can accomplish this by making a mesure somthing like:
Any help would be appricated! 😊😊
Solved! Go to Solution.
@Veljanov So typically something like:
Measure =
VAR __Table = SUMMARIZE('Table',[Projects],"Percent",[Your measure])
RETURN
COUNTROWS(FILTER(__Table,[Percent] > .4))
Learned something new, thank you! 👍
@Veljanov So typically something like:
Measure =
VAR __Table = SUMMARIZE('Table',[Projects],"Percent",[Your measure])
RETURN
COUNTROWS(FILTER(__Table,[Percent] > .4))