=A2&" "&B2
| Argument | Required | Description |
|---|---|---|
| text1 | Required | The first piece of text to join. Usually the first name cell. Can also be a literal text string in quotes. |
| delimiter | Optional | The character to place between each piece. Use " " for a space, ", " for comma-space, or any other separator. |
| ignore_empty | Optional | TRUE skips blank cells without adding extra delimiters. FALSE includes a delimiter even when a cell is empty. Almost always use TRUE. |
| text2 | Required | The second piece of text. Usually the last name cell. TEXTJOIN accepts up to 252 text arguments. |
| A | B | C | |
|---|---|---|---|
| 1 | First Name | Last Name | Full Name |
| 2 | Alice | Chen | =A2&" "&B2 |
| 3 | Bob | Smith | Bob Smith |
| 4 | Carol | Jones | Carol Jones |
| 5 | David | Kim | David Kim |
| 6 | Eve | Taylor | Eve Taylor |
| 7 | Frank | Brown | Frank Brown |
| 8 | Grace | Lee | Grace Lee |
| 9 | Hank | Patel | Hank Patel |
| 10 | Iris | Wong | Iris Wong |
| 11 | James | Miller | James Miller |
| A | B | C | |
|---|---|---|---|
| 1 | First Name | Last Name | Formal Name |
| 2 | Alice | Chen | =B2&", "&A2 |
| 3 | Bob | Smith | Smith, Bob |
| 4 | Carol | Jones | Jones, Carol |
| 5 | David | Kim | Kim, David |
| 6 | Eve | Taylor | Taylor, Eve |
| 7 | Frank | Brown | Brown, Frank |
| 8 | Grace | Lee | Lee, Grace |
| 9 | Hank | Patel | Patel, Hank |
| 10 | Iris | Wong | Wong, Iris |
| 11 | James | Miller | Miller, James |
=A2&" "&B2
=B2&", "&A2
=LEFT(A2,1)&"."&LOWER(B2)&"@company.com"
=C2&" "&A2&" "&B2
=TEXTJOIN(" ",TRUE,A2,B2,C2)
=TEXTJOIN(" ",TRUE,A2,B2,C2)
=PROPER(A2)&" "&PROPER(B2)
=LOWER(LEFT(A2,1))&"."&LOWER(B2)&"@company.com"