Izenda Logo

This documentation is for the legacy Izenda 6 product. Documentation for the new Izenda 7 product can be found at https://www.izenda.com/docs/

Text Concatenation

We can also use expressions to manipulate text. Let’s say that we have 'ShipCity' (e.g. Berlin), as well as 'ShipCountry' (e.g. Germany).

Using the following expression:

[ShipCity], + ‘, ‘ + [ShipCountry]

expressions3

This would combine ‘Berlin’ and ‘Germany’ to ‘Berlin, Germany’. Note that in order to add text, we use single quotes. Anything between single quotes will appear exactly as typed, in this case a comma and single space.

expressions4

In the same as in the example, we can add a static text denomination to a numerical value:

[Freight] + ‘USD’ -> xxxxUSD

We could also write:

‘$’ + [Freight] -> $xxxx


15.0 Expressions in Izenda

User Guides