This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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:
Solved! Go to Solution.
Hi,
Please try writing calculated column formula something like below.
DistanceFromOffice =
IF (
0 < 'HR Analytics Data'[DistanceFromHome]
&& 'HR Analytics Data'[DistanceFromHome] < 5,
"Close"
)
@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
@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
Hi,
Please try writing calculated column formula something like below.
DistanceFromOffice =
IF (
0 < 'HR Analytics Data'[DistanceFromHome]
&& 'HR Analytics Data'[DistanceFromHome] < 5,
"Close"
)
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |