Challenge - 5 Problems
Case Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate1:00remaining
What is the output of =UPPER("Good Morning")?
You have the text
Good Morning in a cell. What will the formula =UPPER("Good Morning") return?Excel
=UPPER("Good Morning")Attempts:
2 left
💡 Hint
UPPER converts all letters to capital letters.
✗ Incorrect
The UPPER function changes all letters in the text to uppercase. So "Good Morning" becomes "GOOD MORNING".
📊 Formula Result
intermediate1:00remaining
What does =LOWER("HELLO WORLD") return?
Given the text
HELLO WORLD, what is the result of the formula =LOWER("HELLO WORLD")?Excel
=LOWER("HELLO WORLD")Attempts:
2 left
💡 Hint
LOWER changes all letters to small letters.
✗ Incorrect
The LOWER function converts all letters in the text to lowercase. So "HELLO WORLD" becomes "hello world".
📊 Formula Result
advanced1:30remaining
What is the output of =PROPER("john DOE")?
You have the text
john DOE. What will the formula =PROPER("john DOE") return?Excel
=PROPER("john DOE")Attempts:
2 left
💡 Hint
PROPER capitalizes the first letter of each word and makes the rest lowercase.
✗ Incorrect
The PROPER function capitalizes the first letter of each word and makes all other letters lowercase. So "john DOE" becomes "John Doe".
❓ Function Choice
advanced1:30remaining
Which formula converts "mIXeD CaSe" to "mixed case"?
You want to convert the text
mIXeD CaSe to all lowercase letters. Which formula will do this?Attempts:
2 left
💡 Hint
LOWER makes all letters small.
✗ Incorrect
The LOWER function converts all letters to lowercase. So it changes "mIXeD CaSe" to "mixed case".
🎯 Scenario
expert2:00remaining
You have a list of names in mixed case. Which formula correctly formats all names as Proper Case?
You have a column with names like
"aLEx smiTH", "MARy jOnEs", and "roBERT bRoWN". You want to convert all names to Proper Case (first letter capital, rest lowercase). Which formula should you use if the name is in cell A2?Attempts:
2 left
💡 Hint
PROPER capitalizes the first letter of each word automatically.
✗ Incorrect
The PROPER function changes the first letter of each word to uppercase and the rest to lowercase, which is exactly what you want for names.