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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now

Reply
Anonymous
Not applicable

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.


Click here to visit my LinkedIn page

View solution in original post

ribisht17
Super User
Super User

@Anonymous 

 

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

@Anonymous 

 

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.


Click here to visit my LinkedIn page

Helpful resources

Announcements
Fabric Data Days is here Carousel

Fabric Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.