Fellas,
CASE
WHEN {item<pricing.currency} = 'USA' THEN 'US'
WHEN {item<pricing.currency} = 'EUR' THEN 'EU'
WHEN {item<pricing.currency} = 'CAD' THEN 'CA'
WHEN {item<pricing.currency} = 'AUD' THEN 'AU'
WHEN {item<pricing.currency} = 'GBP' THEN 'UK'
WHEN {item<pricing.currency} = 'NZD' THEN 'NZ'
ELSE 'no' END
Does anyone know what's wrong with this ?