CellSkill
HL
Helix Logistics
Welcome merge at 4pm

Strip stray whitespace before the welcome merge runs

Onboarding's CSV from the ATS dropped a row with leading, trailing, and a doubled internal space in the new hire's name. Clean it before the 4pm merge so the email salutation isn't garbled.

TRIMBeginner . 2 min . HR & Operations
Lesson 1 · TRIM

Clean an imported new-hire name

Beginner~2 min
Learning objective

Practice using TRIM 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

Onboarding pulled a CSV of next week's new hires from the ATS. The first row has stray spaces — leading, trailing, and a doubled space in the middle. You need a clean version before the welcome email merge runs at 4pm.

Goal

In cell C2, return a fully cleaned version of A2. No leading or trailing whitespace, single space between first and last name. Drag the formula down through C6 so the whole roster is cleaned.

How TRIM works

TRIM removes leading and trailing spaces from text and collapses any run of internal spaces down to a single space. The one-function pre-flight check before any lookup, comparison, or join - because imported data from CRMs, PDFs, and web scrapes is almost never as clean as it looks.

Syntax
TRIM(text)
Read the full TRIM guide
Stuck? Reveal the hint

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

Clean an imported new-hire name | TRIM Exercise | CellSkill