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.
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
Mark your calendars and join us on Thursday, June 30 at 11a PDT for a great session with Ted Pattison!
User | Count |
---|---|
104 | |
42 | |
37 | |
32 | |
20 |
User | Count |
---|---|
126 | |
55 | |
51 | |
35 | |
21 |