Forum Discussion
azakir
3 years agoResolver I
Count Measure
Hi Guys. Trying to get the total count of a measure. I have a measure that calculates the count of equipments if the acheived is higher than target. In the example below, for Dozers should be 4 ins...
- 3 years ago
azakir , You need to have measure like
Countrows(filter(Summarize(Table, Table[Equipmement Class],Table[Equipmement Code], "_1", if([M1] > [M2]+0 ,1, 0) ), [_1] >0 ) )
amitchandak
3 years agoSuper User
azakir , You need to have measure like
Countrows(filter(Summarize(Table, Table[Equipmement Class],Table[Equipmement Code], "_1", if([M1] > [M2]+0 ,1, 0) ), [_1] >0 ) )
- azakir3 years agoResolver I
Thanks amitchandak but that didn't work. Is the measure correct ?
- azakir3 years agoResolver I
Thanks amitchandak . Had to redo the measure with some modifications, but it worked: