Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi All,
I have a measure on which I want to check that how many person have scores more than 70%. Measure values in a table format look like as shown below.
| Deepak | 1 | 90% |
| Dinesh | 2 | 40% |
| Suresh | 3 | 78% |
| Irfan | 4 | 67% |
I want count 2 as answer in another measure, but my calculation is not producing correct result. Kindly help
pc_card = SUMX(Scores,IF(CALCULATE([pc_sum], 'Scores'[pc_id])>0.7 =FALSE(),0,1))
Solved! Go to Solution.
@Minakshi , Assume name is the first column , try
countx(filter(summarize(Scores,Scores[Name], "_1",[pc_sum]),[_1] >.7),[Name])
or
SUMX(values(Scores[Name]),IF(CALCULATE([pc_sum], 'Scores'[pc_id])>0.7,1,0))
in case you need less than use <
Both of them are measures.. not calculated columns...
Both of them are measures.. not calculated columns...
@Minakshi , Assume name is the first column , try
countx(filter(summarize(Scores,Scores[Name], "_1",[pc_sum]),[_1] >.7),[Name])
or
SUMX(values(Scores[Name]),IF(CALCULATE([pc_sum], 'Scores'[pc_id])>0.7,1,0))
in case you need less than use <
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.