Forum Discussion
CarlBlunck
Resolver I
2 years agoCalculate with not equal to filter issue
Hi team, I have this measure: PerformanceReview_Total = CALCULATE( DISTINCTCOUNT(fact_PerformanceReview[Person Person No.]), fact_PlacementData[PersonStatus] = "Existing", fa...
- 2 years ago
CarlBlunck I just answered the similar question, update your measure to this:
PerformanceReview_Total = CALCULATE( DISTINCTCOUNT(fact_PerformanceReview[Person Person No.]), KEEPFILTERS ( fact_PlacementData[PersonStatus] = "Existing" ), KEEPFILTERS ( fact_PlacementData[BaseClass] <> "UNPAID" ) )To learn more about keepfilters, check this video on my YT channel:
parry2k
Super User
2 years agoCarlBlunck I just answered the similar question, update your measure to this:
PerformanceReview_Total = CALCULATE(
DISTINCTCOUNT(fact_PerformanceReview[Person Person No.]),
KEEPFILTERS ( fact_PlacementData[PersonStatus] = "Existing" ),
KEEPFILTERS ( fact_PlacementData[BaseClass] <> "UNPAID" )
)
To learn more about keepfilters, check this video on my YT channel:
CarlBlunck
Resolver I
2 years agoThanks parry2k ! Did something change lately to require the keepfilters() function to be included?