Complete the formula to find the length of the text in cell A1.
=LEN([1])The LEN function counts the number of characters in the text inside the specified cell. Here, we want the length of the text in cell A1, so we use A1 as the argument.
Complete the formula to find the length of the text in cell B2.
=LEN([1])To find the length of the text in cell B2, we use B2 as the argument inside the LEN function.
Fix the error in the formula to correctly find the length of the text in cell C3.
=LEN([1])The correct cell reference is C3. '3C' is invalid, and 'LEN' or 'C' are not valid cell references.
Fill both blanks to create a formula that finds the length of the text in cell D4 and adds 5.
=LEN([1])[2]5
We use D4 as the cell reference inside LEN to get the text length. Then we add 5 using the + operator.
Fill all three blanks to create a formula that finds the length of the text in cell E5, multiplies it by 2, and then subtracts 3.
=(LEN([1])[2]2)[3]3
We use E5 as the cell reference inside LEN. Then multiply the length by 2 using *, and subtract 3 using -.