concat fields within same node(a, b)


Concatenates the values of all fields separated by a that reside above the current field. Calculation fields, subnodes and the field the function is defined on are ignored. If b has the value true the values of calculation fields are added as well.

Description of Parameters

Parameter

Description

a

(optional) Delimiter. If the value starts with 0x (see examples), the character with the hexadecimal Unicode value will be used. Default: ,

b

(optional) true if calculation fields should be added as well. Default: false.

Examples

The destination node contains the following fields above the current field (CF means it is a calculation field).

Counter (CF)

Field1

Field2

Field3

1

Value1

Value2

Value3

Parameter a

Parameter b

Result

;

Value1,Value2,Value3

;

true

1,Value1,Value2,Value3

0x20

false

Value1 Value2 Value3