Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
ehrreich21
Helper I
Helper I

Reduce data by adding new column

I'm trying to reduce the amount of data to meet the following requirement

 

Can’t have one dimension greater than 23 inches, or 2 dimensions greater than 14 inches, or 3 dimensions greater than 11 inches.

 

Does anyone know how to make an expression to tell me true or false if it meet this requirement?

 

I would Also if it's easier to just say my length width and height are not larger than 11 would be even helpful

1 ACCEPTED SOLUTION

Your check is for a singel value > 58.42 which your hightlighted row is not.

2020-06-02_13-50-26.jpg

View solution in original post

11 REPLIES 11
jdbuchanan71
Super User
Super User

@ehrreich21 

I think this is along the lines of what you are looking for.  It is a calculated column on the table.

Check = 
SWITCH (
    TRUE(),
    'Table'[Length] > 23 || 'Table'[Width] > 23 || 'Table'[Height] > 23, "One over 23",
    ('Table'[Length] > 14 && 'Table'[Width] > 14) || ('Table'[Width] > 14 && 'Table'[Height] > 14) || ('Table'[Height] > 14 && 'Table'[Length] > 14), "Two over 14",
    'Table'[Length] > 11 && 'Table'[Width] > 11 && 'Table'[Height] > 11, "Three over 11",
    "good"
)

2020-06-02_12-33-35.jpg

I must be doing something wrong as I get errors in mine

 

I copy and pasted the following: 

 

Check =
SWITCH (
TRUE(),
'Table'[UOM_LENGTH] > 23 || 'Table'[UOM_WIDTH] > 23 || 'Table'[UOM_HEIGHT] > 23, "One over 23",
('Table'[UOM_LENGTH] > 14 && 'Table'[UOM_WIDTH] > 14) || ('Table'[UOM_WIDTH] > 14 && 'Table'[UOM_HEIGHT] > 14) || ('Table'[UOM_HEIGHT] > 14 && 'Table'[UOM_LENGTH] > 14), "Two over 14",
'Table'[UOM_LENGTH] > 11 && 'Table'[UOM_WIDTH] > 11 && 'Table'[UOM_HEIGHT] > 11, "Three over 11",
"good"
)

 

Can you add a screen shot of you custom column dialogue box?

Is your table named 'Table'?  If not then you have to change my measure to match the name of the table in your model.

Or you can take the table reference out of the formula:

Check = 
SWITCH (
    TRUE(),
    [UOM_LENGTH] > 23 || [UOM_WIDTH] > 23 || [UOM_HEIGHT] > 23, "One over 23",
    ([UOM_LENGTH] > 14 && [UOM_WIDTH] > 14) || ([UOM_WIDTH] > 14 && [UOM_HEIGHT] > 14) || ([UOM_HEIGHT] > 14 && [UOM_LENGTH] > 14), "Two over 14",
    [UOM_LENGTH] > 11 && [UOM_WIDTH] > 11 && [UOM_HEIGHT] > 11, "Three over 11",
    "good"
)

 

I changed the name but I still get an error, see my screenshot

 

Capture.JPG

You need to take the 

'Check ='

out of your fomula.  That is what is causing it to not work.

2020-06-02_13-11-15.jpg

 

I removed that and still error, not sure what is causing the error everything else should be swapped correct with my names

 

Capture2.JPG

Oh, you are trying to add the column in the query editor which uses a different language (M).  My formula is for adding the column to the model using DAX in the table view.

2020-06-02_13-19-31.jpg

I had to convert the values to cm but it doesn't seem to work on all, I am highlight an example where it break the rules

 

Check =
SWITCH (
TRUE(),
'ITEM_MASTER'[UOM_LENGTH] > 58.42 || 'ITEM_MASTER'[UOM_WIDTH] > 58.42 || 'ITEM_MASTER'[UOM_HEIGHT] > 58.42, "One over 58.42",
('ITEM_MASTER'[UOM_LENGTH] > 35.56 && 'ITEM_MASTER'[UOM_WIDTH] > 35.56) || ('ITEM_MASTER'[UOM_WIDTH] > 35.56 && 'ITEM_MASTER'[UOM_HEIGHT] > 35.56) || ('ITEM_MASTER'[UOM_HEIGHT] > 35.56 && 'ITEM_MASTER'[UOM_LENGTH] > 35.56), "Two over 35.56",
'ITEM_MASTER'[UOM_LENGTH] > 27.94 && 'ITEM_MASTER'[UOM_WIDTH] > 27.94 && 'ITEM_MASTER'[UOM_HEIGHT] > 27.94, "Three over 27.94",
"good"
)
 

 

 

Capture3.JPG

Your check is for a singel value > 58.42 which your hightlighted row is not.

2020-06-02_13-50-26.jpg

You are correct

That works for adding to the Model which is good, Aside point do you know if it is possible to add to the query editor?

 

Thanks for all the help

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.