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 <
Proud to be a Super User!
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 <
Proud to be a Super User!
User | Count |
---|---|
341 | |
152 | |
85 | |
79 | |
44 |
User | Count |
---|---|
401 | |
241 | |
112 | |
110 | |
97 |