CellSkill
CH
Cypress HR Services
Mailing list ships Monday

Stitch first + last names into one column for the mailout

HR is prepping the holiday card mailing list. First names sit in column A, last names in column B, but the print template needs them joined into one "Full Name" field. Build the join in C2 and drag it down to cover every employee.

CONCATBeginner . 2 min . HR & Operations
Lesson 3 · CONCAT

Build employee full names

Beginner~2 min
Learning objective

Practice using CONCAT to solve a real hr & operations problem. By the end, you’ll know when to reach for it and how to structure the arguments correctly.

Scenario

HR needs to generate a mailing list. First names are in column A and last names in column B. You need to combine them into full names with a space in between.

Goal

In C2, join the first name in A2 with the last name in B2 and put a space between them. Either CONCAT or the & operator works.

How CONCAT works

CONCAT joins text from multiple cells or ranges into one string. The modern replacement for CONCATENATE: same job, but CONCAT accepts ranges (CONCAT(A2:A6)) where CONCATENATE only accepts individual cells. For delimiters or skip-empty support, use TEXTJOIN instead.

Syntax
CONCAT(text1, [text2], ...)
Read the full CONCAT guide
Stuck? Reveal the hint

Try the formula first. Hints cost CP for a reason.

Build employee full names | CONCAT Exercise | CellSkill