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.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
11 | |
11 | |
10 | |
10 |
User | Count |
---|---|
19 | |
14 | |
13 | |
11 | |
8 |