Remove extra spaces from text using TRIM.
Clean up the text in column A by removing extra leading, trailing, and multiple spaces between words. Display the cleaned text in column B.
Solve without hints for +5 XP
This is the grid you start with. Cell references in the task — B6, C2 — point at the row numbers and column letters below.
| A | B | |
|---|---|---|
| 1 | Original Text | Cleaned Text |
| 2 | John Smith | |
| 3 | Mary Jones | |
| 4 | Tom Wilson | |
| 5 | Sarah Brown |
The TRIM function removes extra spaces from text, leaving only single spaces between words. It's crucial for data cleaning operations.