This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
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 May 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 |
|---|---|
| 29 | |
| 28 | |
| 25 | |
| 19 | |
| 14 |
| User | Count |
|---|---|
| 53 | |
| 47 | |
| 27 | |
| 20 | |
| 19 |