Complete the formula to convert the text in cell A1 to all uppercase letters.
= [1](A1)The UPPER function changes all letters in the text to uppercase.
Complete the formula to convert the text in cell B2 to all lowercase letters.
= [1](B2)The LOWER function converts all letters in the text to lowercase.
Fix the error in the formula to capitalize the first letter of each word in cell C3.
= [1](C3)The PROPER function capitalizes the first letter of each word.
Fill both blanks to convert text in D4 to lowercase and then capitalize the first letter of each word.
= [1]([2](D4))
First, LOWER makes all letters lowercase, then PROPER capitalizes the first letter of each word.
Fill all three blanks to convert text in E5 to uppercase, then lowercase, then capitalize the first letter of each word.
= [1]([2]([3](E5)))
The text is first converted to uppercase with UPPER, then to lowercase with LOWER, and finally capitalized with PROPER.