Forum Discussion

jak8282's avatar
jak8282
Helper III
2 years ago
Solved

Wee bug found

When using the not(isblank) function within a calculate it doesnt seem use the other filters in the calculate.   Had some wierd returns.
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi jak8282 ,

     

    Try to modify your formula like below: In this modified expression, we use Evaluation[Scorecard] <> "other" to filter records where the Scorecard column is not equal to "other".

    QMS Procedural Pass Score1 = 
    CALCULATE(
        COUNT(Evaluation[Date]),
        Evaluation[Process Result] = "Pass",
        Evaluation[Scorecard] <> "other",
        USERELATIONSHIP('Date'[Date], Evaluation[Date])
    )
    

     

    Best Regards,
    Adamk Kong

     

    If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.