String with Macros
Formatting macros are used to build strings, part of which is replaced when they execute.
To introduce a value that will be replaced when run, simple place the name of the variable/dynamic field between braces.
The variable/field names are not case-sensitive.
To include a brace in the string, simply replicate it.
Example
If you have the following variables:
| Name | Value |
| ID | 15 |
| NAME | Bread |
| DESCRIPTION | Rye |
When they execute, the following strings with macros will yield:
| String with macros | Result |
| "Item: {NAME}" | "Item: Bread" |
| "Item: {ID} - {DESCRIPTION}" | "Item: 15 - Rye" |