Thanks so much, Jonahtan! I apologize for taking so long to express my appreciation for this!
All best, and hope you have a great weekend.
John
On a side note, your use of CONCATENATE() wrapped around that other formula is a little redundant.
The formula inside that:
First & " " & Last & " " & {With First} & " " & {With Last}
…outputs exactly what you want, without using CONCATENATE(). That’s because the & operator is designed essentially as a shortcut alternative for CONCATENATE().
The CONCATENATE() function is designed to take a comma-separated series of items—the function arguments—and return a single string. To reformat your formula using CONCATENATE() properly, it would look like this:
CONCATENATE(First, " ", Last, " ", {With First}, " ", {With Last})
In other words, you would probably pick either & or CONCATENATE() when building a string from multiple pieces, but not both. :slightly_smiling_face: