Complete the formula to remove extra spaces from cell A1.
=TRIM([1])The TRIM function removes extra spaces from the text in cell A1.
Complete the formula to convert the text in B2 to all uppercase letters.
=UPPER([1])The UPPER function converts all letters in cell B2 to uppercase. Use the cell reference without quotes.
Fix the error in the formula to replace all commas with semicolons in cell C3.
=SUBSTITUTE(C3, [1], [2])
The SUBSTITUTE function replaces all commas "," with semicolons ";" in cell C3. Both blanks need the correct string values with quotes.
Fill both blanks to create a formula that extracts the first 5 characters from cell D4 and converts them to lowercase.
=LOWER(LEFT([1], [2]))
The LEFT function extracts the first 5 characters from cell D4, and LOWER converts them to lowercase.
Fill all three blanks to create a formula that finds the position of the first space in cell E5 and extracts the word before it.
=LEFT([1], [2]([1], " ") - [3])
The FIND function locates the first space " " in cell E5. LEFT extracts characters from the start up to one less than that position to get the first word.