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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not applicable

How to Prevent Value From Changing When True Statement Is Met

I have this measure and it works fine when the initial count of 5 is met (i.e. displays a 1).  BUT, if the count goes over 5, then the value displayed is 0.  I want it it to stay at 1 no matter what once the initial count is met.  Is there a way to do that?

 

AFC South = IF (CALCULATE(
    COUNT(Query2[TR#]),
    FILTER(
        Query2,
        Query2[BadgeName] = "AFC South" ||
        Query2[BadgeName] = "Houston Texans" ||
        Query2[BadgeName] = "Indianapolis Colts" ||
        Query2[BadgeName] = "Jacksonville Jaguars" ||
        Query2[BadgeName] = "Tennessee Titans"
    )
) = 5,1,0)
1 ACCEPTED SOLUTION
TomMartens
Super User
Super User

Hey,

 

I guess I do not fully understand the question, but maybe it's possible to "just" change the condition to

...
) >= 5,1,0)

Regards,

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

View solution in original post

2 REPLIES 2
TomMartens
Super User
Super User

Hey,

 

I guess I do not fully understand the question, but maybe it's possible to "just" change the condition to

...
) >= 5,1,0)

Regards,

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany
Anonymous
Not applicable

That worked! I was making it waaayyyy more complicated.  Thanks so much! 🙂

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.