Forum Discussion
millercj
1 year agoRegular Visitor
Measure on a measure
For reference, I am an insurance agent. Goal: I need to count the number of entities (customers) where ActivePolicyCount=1 I have a table named "Entities" (essentially customers). Within that...
- 1 year ago
you can try below measure
Count_Customers_ActivePolicy1 = CALCULATE( DISTINCTCOUNT(Entities[CustomerID]), FILTER( Entities, [ActivePolicyCount] = 1 ) )Regards
sanalytics
sanalytics
1 year agoSuper User
you can try below measure
Count_Customers_ActivePolicy1 =
CALCULATE(
DISTINCTCOUNT(Entities[CustomerID]),
FILTER(
Entities,
[ActivePolicyCount] = 1
)
)
Regards
sanalytics
millercj
1 year agoRegular Visitor
That did it! Thank you!