Forum Discussion

CarlBlunck's avatar
CarlBlunck
Icon for Resolver I rankResolver I
2 years ago
Solved

Calculate 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...
  • parry2k's avatar
    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: