🔗 The String Joiner

Goal: Combine First Name, Middle, and Last Name.
CONCAT: Glues text directly.
TEXTJOIN: Adds a separator (e.g., space) automatically.

(Waiting to join...)
Ready...

💻 Formula Structure

=CONCAT(text1, [text2], ...)
  • 1. Text: Strings to combine.
  • Note: Does not add spaces automatically. You must include them manually as " ".
-- Select a function...
...
Final String:
-

⚠️ Common Pitfalls

🚫 Concatenate vs Concat
CONCATENATE is the old legacy function. CONCAT is the modern version that supports ranges (e.g. A1:A10), which the old one couldn't do.
🚫 Missing Spaces
=CONCAT("John", "Doe") results in "JohnDoe". Always remember to add the space: =CONCAT("John", " ", "Doe").