Insert Field drops a record value into your template — the bread and butter of document generation. One article covers all four template formats; use the format tabs to see specifics. (Today this exists as six separate near-identical pages across Word/Excel/PPT and both products.)
Syntax
{!$Record.Account.Name} // direct field
{!$Record.Owner.Email} // cross-object hop
{!$Vars.quote_valid_until} // runtime variableFormat specifics
Word templates
Place the tag anywhere in text, tables, headers or footers. Style of the first tag character is preserved.
Formatting options
| Modifier | Effect | Example |
|---|---|---|
| date:"MMM d, yyyy" | Format a date field | {!$Record.CloseDate | date:"MMM d, yyyy"} |
| currency | Locale currency from user settings | {!$Record.Amount | currency} |
| upper | Uppercase | {!$Record.Name | upper} |
ⓘ
Empty valuesAn unresolvable field renders as an empty string, not an error. Use Insert Condition to hide whole blocks when data is missing.
