Forum Discussion
Reduce data by adding new column
- 6 years ago
Your check is for a singel value > 58.42 which your hightlighted row is not.
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"
)- Anonymous6 years agoNot applicable
I changed the name but I still get an error, see my screenshot
- jdbuchanan716 years agoSuper User
You need to take the
'Check ='
out of your fomula. That is what is causing it to not work.
- Anonymous6 years agoNot applicable
I removed that and still error, not sure what is causing the error everything else should be swapped correct with my names