Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
Hey all,
I'm trying to do a custom column to see what items will fit into my standard size box. Here is my DAX -
Solved! Go to Solution.
This is because you're returning a blank when it doesn't satisfy the first 3 conditions.
You can add those cases back in like this:
Box Fit =
IF (
'Items'[UNIT_HEIGHT (CM)] < 5,
IF (
'Items'[UNIT_LENGTH(CM)] < 23,
IF (
'Items'[UNIT_WIDTH (CM)] < 20,
IF ( 'Items'[UNIT_WEIGHT (KG)] < 1, "FIT", "NO FIT" ),
"NO FIT"
),
"NO FIT"
),
"NO FIT"
)
or simplify to this:
Box Fit =
IF (
'Items'[UNIT_HEIGHT (CM)] < 5
&& 'Items'[UNIT_LENGTH(CM)] < 23
&& 'Items'[UNIT_WIDTH (CM)] < 20
&& 'Items'[UNIT_WEIGHT (KG)] < 1,
"FIT",
"NO FIT"
)
This is because you're returning a blank when it doesn't satisfy the first 3 conditions.
You can add those cases back in like this:
Box Fit =
IF (
'Items'[UNIT_HEIGHT (CM)] < 5,
IF (
'Items'[UNIT_LENGTH(CM)] < 23,
IF (
'Items'[UNIT_WIDTH (CM)] < 20,
IF ( 'Items'[UNIT_WEIGHT (KG)] < 1, "FIT", "NO FIT" ),
"NO FIT"
),
"NO FIT"
),
"NO FIT"
)
or simplify to this:
Box Fit =
IF (
'Items'[UNIT_HEIGHT (CM)] < 5
&& 'Items'[UNIT_LENGTH(CM)] < 23
&& 'Items'[UNIT_WIDTH (CM)] < 20
&& 'Items'[UNIT_WEIGHT (KG)] < 1,
"FIT",
"NO FIT"
)
Thank you so much! I had tried with just an "and" between them but it looks like it needed two of them. Works perfectly now!
Yep. A single "&" is used for concatenating text and "&&" is the logical operator.
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
10 |
User | Count |
---|---|
19 | |
16 | |
14 | |
11 | |
9 |