Complete the formula to convert the text in cell A1 to uppercase.
=UPPER([1])The UPPER function converts text to uppercase. You need to reference the cell A1 where the text is located.
Complete the formula to extract the first 5 characters from the text in cell B2.
=LEFT([1], 5)
The LEFT function extracts characters from the start of a text string. You need to reference cell B2 where the text is.
Fix the error in the formula to replace all spaces in cell C3 with underscores.
=SUBSTITUTE([1], " ", "_")
The SUBSTITUTE function replaces text within a string. The cell reference should be C3 without quotes.
Fill both blanks to create a formula that trims extra spaces from cell D4 and converts the result to proper case.
=PROPER([1]([2]))
UPPER or LOWER instead of TRIM inside the formula.The TRIM function removes extra spaces, and PROPER capitalizes the first letter of each word. The cell reference is D4.
Fill all three blanks to create a formula that concatenates the text in cells E1 and F1 with a space between them.
=CONCATENATE([1], [2], [3])
The CONCATENATE function joins text. You need to join E1, a space " ", and F1 to get the combined text with a space.