TEXTJOIN
Joins a list of text strings using a delimiter, with option to ignore empty strings.
| Category | Text |
| Syntax | TEXTJOIN(delimiter, ignore_empty, text1, [text2], ...) |
Parameters
| Parameter | Required | Description |
|---|---|---|
delimiter | Required | The delimiter to place between each text item. |
ignore_empty | Required | If TRUE (non-zero), empty strings are ignored. |
text1 | Required | The first text item to join. |
text2 | Optional | Additional text items to join. |
Example
TEXTJOIN("text")
Auto-generated from the EngCanvas function registry.