Complete the formula to remove extra spaces from the text in cell A1.
=TRIM([1])The TRIM function removes extra spaces from the text in cell A1, cleaning the data.
Complete the formula to convert the text in cell B2 to uppercase.
=UPPER([1])The UPPER function changes all letters in cell B2 to uppercase, which helps standardize text data.
Fix the error in the formula to extract the first 5 characters from cell C3.
=LEFT([1], 5)
The LEFT function extracts characters from a cell reference. Using C3 without quotes correctly references the cell.
Fill both blanks to create a formula that replaces all commas with semicolons in cell D4.
=SUBSTITUTE([1], [2], ";")
The SUBSTITUTE function replaces all commas (",") in cell D4 with semicolons (";").
Fill all three blanks to create a formula that trims spaces, converts text in E5 to lowercase, and replaces spaces with underscores.
=SUBSTITUTE(LOWER(TRIM([1])), [2], [3])
This formula cleans text in E5 by removing extra spaces (TRIM), changing all letters to lowercase (LOWER), and replacing spaces with underscores (SUBSTITUTE).