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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
LyonsBI_BRL
Helper III
Helper III

Nested IF Statement - Not Returning all Conditions

I'm running into a problem when running my nested IF statement.

 

If([value.FollowersonTwitter]<=500, "Less than 500",
IF([value.FollowersonTwitter]>=1000, "1000",
IF([value.FollowersonTwitter]>=5000, "5000+",
IF([value.FollowersonTwitter]>=10000, "10,000+", "No Followers"))))

 

Though when I run it I'm not getting any results for the rows that have 5000 or 10000 followers. What am I missing here?

 

LyonsBI_BRL_3-1621495774507.png

 

Thanks!

 

 

1 ACCEPTED SOLUTION
selimovd
Super User
Super User

Hey @LyonsBI_BRL ,

 

when you have 6000 followers the criteria >=1000 gives back a true and the other options are not checked.

You can either change the order, so that the biggest numbers are checked first:

 

IF([value.FollowersonTwitter]>=10000, "10,000+",
IF([value.FollowersonTwitter]>=5000, "5000+",
IF([value.FollowersonTwitter]>=1000, "1000",
If([value.FollowersonTwitter]<=500, "Less than 500", "No Followers"))))

 

 

Or you have to add a second citeria:

 

If([value.FollowersonTwitter]<=500, "Less than 500",
IF([value.FollowersonTwitter]>=1000 && [value.FollowersonTwitter]<5000, "1000",
IF([value.FollowersonTwitter]>=5000 && [value.FollowersonTwitter]<10000, "5000+",
IF([value.FollowersonTwitter]>=10000, "10,000+", "No Followers"))))

 

 

Also I would recommend to check out the usage of SWITCH(TRUE) as it's a lot clearer than nested ifs:

https://powerpivotpro.com/2015/03/the-diabolical-genius-of-switch-true/

 

myCalculatedColumn =
SWITCH(
    TRUE(),
    [value.FollowersonTwitter] >= 10000, "10,000+",
    [value.FollowersonTwitter] >= 5000, "5000+",
    [value.FollowersonTwitter] >= 1000, "1000",
    [value.FollowersonTwitter] <= 500, "Less than 500",
    "No Followers"
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

View solution in original post

3 REPLIES 3
selimovd
Super User
Super User

Hey @LyonsBI_BRL ,

 

when you have 6000 followers the criteria >=1000 gives back a true and the other options are not checked.

You can either change the order, so that the biggest numbers are checked first:

 

IF([value.FollowersonTwitter]>=10000, "10,000+",
IF([value.FollowersonTwitter]>=5000, "5000+",
IF([value.FollowersonTwitter]>=1000, "1000",
If([value.FollowersonTwitter]<=500, "Less than 500", "No Followers"))))

 

 

Or you have to add a second citeria:

 

If([value.FollowersonTwitter]<=500, "Less than 500",
IF([value.FollowersonTwitter]>=1000 && [value.FollowersonTwitter]<5000, "1000",
IF([value.FollowersonTwitter]>=5000 && [value.FollowersonTwitter]<10000, "5000+",
IF([value.FollowersonTwitter]>=10000, "10,000+", "No Followers"))))

 

 

Also I would recommend to check out the usage of SWITCH(TRUE) as it's a lot clearer than nested ifs:

https://powerpivotpro.com/2015/03/the-diabolical-genius-of-switch-true/

 

myCalculatedColumn =
SWITCH(
    TRUE(),
    [value.FollowersonTwitter] >= 10000, "10,000+",
    [value.FollowersonTwitter] >= 5000, "5000+",
    [value.FollowersonTwitter] >= 1000, "1000",
    [value.FollowersonTwitter] <= 500, "Less than 500",
    "No Followers"
)

 

If you need any help please let me know.
If I answered your question I would be happy if you could mark my post as a solution ✔️ and give it a thumbs up 👍
 
Best regards
Denis
 

Worked perfectly! Like I said I knew I was missing something here!

 

Thank you again! 😀

@LyonsBI_BRL I'm happy it worked. Yes, that are usually the annoying parts, when you don't see it and search at the wrong spot.

 

Best regards

Denis

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.