Forum Discussion
jak8282
2 years agoHelper III
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.
- Anonymous2 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 KongIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
2 years agoNot applicable
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.