Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don'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.

Reply
jak8282
Helper III
Helper 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.

1 ACCEPTED SOLUTION
v-kongfanf-msft
Community Support
Community Support

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])
)

vkongfanfmsft_0-1713770843488.png

 

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.

View solution in original post

3 REPLIES 3
v-kongfanf-msft
Community Support
Community Support

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])
)

vkongfanfmsft_0-1713770843488.png

 

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.

Greg_Deckler
Super User
Super User

@jak8282 Well, CALCULATE after all... Any chance you can provide more information so that the problem can be recreated?



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...

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

 

 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.