Description
The AppendFormat function takes a base string and a second string of comma, separated values which it uses to generate a set of strings.
Signature
AppendFormat('inputstring', param[0],param[1],param[n])
Example
AppendFormat('Value = {0}', 'Decision Maker,Champion')
Returns 'Value='Decision Maker', 'Value='Champion'
Parameters
| Name | Type | Description | Required |
|---|---|---|---|
| inputstring | xxxx | xxxx | xxxx |
| param[0] | xxxx | xxxx | xxxx |
| param[1] | xxxx | xxxx | xxxx |
| param[n] | xxxx | xxxx | xxxx |
