Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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"
)
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 46 | |
| 34 | |
| 27 | |
| 15 | |
| 15 |
| User | Count |
|---|---|
| 59 | |
| 58 | |
| 39 | |
| 22 | |
| 20 |