How to Combine Text with CONCATENATE
Learn how to automatically create meta titles, descriptions, and other text fields by combining multiple product attributes.
When to Use This
Use CONCATENATE when you need to:
- Create meaningful page titles (meta titles)
- Build product descriptions from attributes
- Combine multiple fields into one
- Add fixed text to variable data
Understanding CONCATENATE
CONCATENATE combines up to 255 different values into a single text string.
Syntax
=CONCATENATE(text1; text2; text3; ...)
Example
=CONCATENATE("Hello"; " "; "World")
Result: "Hello World"