Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. 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 |
---|---|
14 | |
10 | |
10 | |
10 | |
9 |
User | Count |
---|---|
20 | |
13 | |
12 | |
11 | |
8 |