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
timzedel
Frequent Visitor

IF statement doesn't work when using value range

I am trying to understand why Power BI does not compute my DAX IF statement when I introduce a value range (value1 < x < value2)

 

When I create a column using this DAX expression, the column is created with no issues:

 
DistanceFromOffice = IF(0<'HR Analytics Data'[DistanceFromHome],"Close")
 
But, when I introduce an upper range to the expression: DistanceFromOffice = IF(0<'HR Analytics Data'[DistanceFromHome]<5,"Close")
 
I get the following error: DAX comparison operations do not support comparing values of type True/False with values of type Integer. Consider using the VALUE or FORMAT function to convert one of the values.
 
I am aware that I could achieve the desired column using a SWITCH expression but I'm more so trying to understand why my IF statement doesn't work - what does it mean by 'comparing values of true/false with values of type integer'? 
2 ACCEPTED SOLUTIONS
Jihwan_Kim
Super User
Super User

Hi,

Please try writing calculated column formula something like below.

 

DistanceFromOffice =
IF (
    0 < 'HR Analytics Data'[DistanceFromHome]
        && 'HR Analytics Data'[DistanceFromHome] < 5,
    "Close"
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


View solution in original post

ribisht17
Super User
Super User

@timzedel 

 

The product of 0<'HR Analytics Data'[DistanceFromHome] with be either TRUE or FALSE

 

But then you are trying to equate this with < 5 which is a number

 

So your equation is TRUE/FALSE(0<'HR Analytics Data'[DistanceFromHome]) < 5 hence failing

 

You can use && to give it a context like below as you are giving multiple conditions here

 

Thanks,

Ritesh

Mark my post as a solution if it helped you| Munde and Kudis (Ladies and Gentlemen) I like your Kudos!! !!
My YT Channel Dancing With Data !! Connect on Linkedin !! PL 300 Certification Series

 

 

View solution in original post

2 REPLIES 2
ribisht17
Super User
Super User

@timzedel 

 

The product of 0<'HR Analytics Data'[DistanceFromHome] with be either TRUE or FALSE

 

But then you are trying to equate this with < 5 which is a number

 

So your equation is TRUE/FALSE(0<'HR Analytics Data'[DistanceFromHome]) < 5 hence failing

 

You can use && to give it a context like below as you are giving multiple conditions here

 

Thanks,

Ritesh

Mark my post as a solution if it helped you| Munde and Kudis (Ladies and Gentlemen) I like your Kudos!! !!
My YT Channel Dancing With Data !! Connect on Linkedin !! PL 300 Certification Series

 

 

Jihwan_Kim
Super User
Super User

Hi,

Please try writing calculated column formula something like below.

 

DistanceFromOffice =
IF (
    0 < 'HR Analytics Data'[DistanceFromHome]
        && 'HR Analytics Data'[DistanceFromHome] < 5,
    "Close"
)

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Go to My LinkedIn Page


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.