Function DisplayCsv
Formats a value for use in a csv output i.e. removes commas etc.
DisplayCsv([VALUE],[INCLUDE_COMMA])Parameters
| # | Type | Passing | Default | Name | Description/Comments |
|---|---|---|---|---|---|
| 1 | any | required | n/a | VALUE | The value to format |
| 2 | boolean | optional | false | INCLUDE_COMMA | Whether 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
