Function DisplayCsv

Formats a value for use in a csv output i.e. removes commas etc.

DisplayCsv([VALUE],[INCLUDE_COMMA])

Parameters

#TypePassingDefaultNameDescription/Comments
1anyrequiredn/aVALUEThe value to format
2booleanoptionalfalseINCLUDE_COMMAWhether to include a comma after the field

Returns

The formatted field value


Examples

Example of using fields:

{{DisplayCsv("A,B,C")}},{{DisplayCsv("D,E,F")}}

Will result in:

ABC,DEF