Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
When using the not(isblank) function within a calculate it doesnt seem use the other filters in the calculate.
Had some wierd returns.
Solved! Go to Solution.
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.
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.
@jak8282 Well, CALCULATE after all... Any chance you can provide more information so that the problem can be recreated?
It was with code
QMS Procedural Pass Score =
CALCULATE(
COUNT(Evaluation[Date]),
Evaluation[Process Result] = "Pass",
NOT(Evaluation[Scorecard])= "other",
USERELATIONSHIP('Calendar Date'[Date],Evaluation[iDayID]))
never knew calculate was was to use..
With the NOT it was bringing back all the scorecards
scorecard 1 | 72%
scorecard 2 | 72%
scorecard 3 | 72%
scorecard 4 | 72%
However with the blank in the filter section instead it brought it back correctly
scorecard 3 | 72%
HTH
User | Count |
---|---|
123 | |
76 | |
62 | |
50 | |
50 |
User | Count |
---|---|
175 | |
125 | |
60 | |
60 | |
58 |