The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
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
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
110 | |
80 | |
66 | |
53 | |
52 |
User | Count |
---|---|
121 | |
117 | |
77 | |
64 | |
63 |