Recall & Review
beginner
What does the LEN function do in Google Sheets?
The LEN function counts the number of characters in a text string, including spaces and punctuation.
Click to reveal answer
beginner
How do you write the LEN function to count characters in cell A1?
Use
=LEN(A1) to count all characters in the text inside cell A1.Click to reveal answer
beginner
Does LEN count spaces and punctuation marks?
Yes, LEN counts every character including spaces, commas, periods, and other punctuation.
Click to reveal answer
beginner
What will
=LEN("Hello World") return?It returns 11 because there are 11 characters including the space between Hello and World.
Click to reveal answer
beginner
Can LEN be used on numbers directly?
Yes, but numbers are treated as text. For example,
=LEN(12345) returns 5.Click to reveal answer
What does the LEN function count in a cell?
✗ Incorrect
LEN counts all characters in the text, including spaces and punctuation.
What is the result of
=LEN("Hi there!")?✗ Incorrect
The string "Hi there!" has 9 characters including the space and exclamation mark.
Which formula correctly counts characters in cell B2?
✗ Incorrect
LEN counts characters in the text of cell B2.
If cell A1 contains the number 2024, what does
=LEN(A1) return?✗ Incorrect
Numbers are treated as text, so LEN counts the digits: 4 characters.
Does LEN count invisible characters like spaces?
✗ Incorrect
LEN counts all characters including spaces anywhere in the text.
Explain how the LEN function works and give an example of its use.
Think about how many letters and spaces are in a sentence.
You got /3 concepts.
Describe a real-life situation where you might use the LEN function in a spreadsheet.
Imagine you want to make sure a phone number or ID has the right number of digits.
You got /3 concepts.