Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
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"
)
User | Count |
---|---|
65 | |
60 | |
47 | |
33 | |
32 |
User | Count |
---|---|
86 | |
75 | |
56 | |
50 | |
45 |