I am trying to use SWITCH function in Column Expressions node, syntax is below. However it always gives me the default result which is “error”, although there is some matching codes in the dataset.
Does SWITCH works in KNIME? If so, what should be the correct syntax?
switch(column("Company Code")) {
case '11':'Italy';
case '12':'Poland';
default: 'error'
}