Excel Practice - CONCATENATE
Instruction
Join text in A2 and B2 into one full name with a space between them.
Formula Syntax
=CONCATENATE(text1, [text2], ...)
- text1: Input text value.
- [text2]: Input text value.
- ...: Additional optional arguments.
What it does
Join multiple text values into one string.
text-cleanup.xlsx
| A | B | |
|---|---|---|
| 1 | Raw Text | Helper |
| 2 | ACME Corporation | ACME |
| 3 | Invoice-2026-0001 | 2026 |
| 4 | VIP_CLIENT | VIP |
| 5 | John Doe | Doe |
| 6 | Product Name | Product |
| 7 | Output |
Input Formula
Need Help?
Tips
- Use CONCATENATE with clean and consistent ranges for predictable results.
- Validate data types (number, text, date) before applying the formula.
- Test the formula with a small sample first, then scale it to larger ranges.