Recall & Review
beginner
What does the TRIM function do in Google Sheets?
TRIM removes all extra spaces from text, leaving only single spaces between words and no spaces at the start or end.
Click to reveal answer
beginner
What is the purpose of the CLEAN function in Google Sheets?
CLEAN removes non-printable characters from text, which can cause problems in formulas or display.
Click to reveal answer
intermediate
How would you combine TRIM and CLEAN to clean a messy text in cell A1?
Use =TRIM(CLEAN(A1)) to first remove non-printable characters, then remove extra spaces.
Click to reveal answer
intermediate
Why is it useful to use CLEAN before TRIM when cleaning text?
CLEAN removes hidden characters that TRIM can't remove, so using CLEAN first ensures TRIM works on clean text.
Click to reveal answer
beginner
True or False: TRIM removes all spaces inside words.
False. TRIM only removes extra spaces between words and at the start/end, but keeps single spaces inside words.
Click to reveal answer
What does the TRIM function remove from text?
✗ Incorrect
TRIM removes extra spaces but keeps single spaces between words.
Which function removes non-printable characters in Google Sheets?
✗ Incorrect
CLEAN removes non-printable characters that can cause issues.
What is the correct formula to clean text in cell A2 by removing non-printable characters and extra spaces?
✗ Incorrect
Use CLEAN first to remove hidden characters, then TRIM to remove extra spaces.
If a text has tabs and line breaks, which function helps remove them?
✗ Incorrect
CLEAN removes tabs, line breaks, and other non-printable characters.
Does TRIM remove spaces inside a word like 'hello world' to 'helloworld'?
✗ Incorrect
TRIM keeps single spaces inside words; it only removes extra spaces.
Explain how and why you would use TRIM and CLEAN together to prepare text data for analysis.
Think about hidden characters and extra spaces in messy text.
You got /4 concepts.
Describe a real-life situation where using TRIM and CLEAN would improve your spreadsheet data.
Consider copying text from emails or websites.
You got /4 concepts.