Forum Discussion
JordanJackson
3 years agoAdvocate II
Needing help with Countrows Measure
I am needing help with a COUNTROWs measure thats looking at counting rows where that contract falls out of target. Measure as follows:
Count CE % Difference > 90 =
CALCULATE (
COUNTROWS ...
- 3 years ago
pls try this
Count CE % Difference > 90 = CALCULATE ( COUNTROWS ( KPI_Data ), FILTER (ALL( KPI_Data), [CE % Differance] > 0.9 ) )
Ahmedx
3 years agoSuper User
pls try this
Count CE % Difference > 90 =
CALCULATE (
COUNTROWS ( KPI_Data ),
FILTER (ALL(
KPI_Data),
[CE % Differance] > 0.9
)
)
- JordanJackson3 years agoAdvocate II
Thankyou, sometimes the solution is right in front of you lol