The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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))
User | Count |
---|---|
15 | |
12 | |
8 | |
7 | |
7 |
User | Count |
---|---|
24 | |
20 | |
12 | |
9 | |
7 |