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 enter the formula
=UPPER("Good Morning") in a cell. What will the cell display?Google Sheets
=UPPER("Good Morning")Attempts:
2 left
💡 Hint
UPPER converts all letters to uppercase.
✗ 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?
You type
=LOWER("HELLO WORLD") in a cell. What will be the result?Google Sheets
=LOWER("HELLO WORLD")Attempts:
2 left
💡 Hint
LOWER changes all letters to lowercase.
✗ Incorrect
The LOWER function converts all letters to lowercase. So "HELLO WORLD" becomes "hello world".
📊 Formula Result
advanced1:30remaining
What is the output of =PROPER("john DOE smith")?
You enter
=PROPER("john DOE smith") in a cell. What will the cell show?Google Sheets
=PROPER("john DOE smith")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 the rest lowercase. So "john DOE smith" becomes "John Doe Smith".
❓ Function Choice
advanced1:30remaining
Which formula converts "mArY aNnE" to "Mary Anne"?
You want to change the text "mArY aNnE" so that only the first letter of each word is uppercase and the rest are lowercase. Which formula should you use?
Attempts:
2 left
💡 Hint
Think about which function capitalizes the first letter of each word.
✗ Incorrect
PROPER capitalizes the first letter of each word and makes the rest lowercase. UPPER makes all uppercase, LOWER all lowercase, and CONCATENATE joins text without changing case.
🎯 Scenario
expert2:00remaining
You have a list of names in column A with mixed cases. You want to create a formula in column B that shows the names in all uppercase except the first letter of the entire name should be uppercase and the rest lowercase. Which formula will produce this result for cell A2?
Given cell A2 contains "jOhN doE", which formula in B2 will produce "John doe" (only the first letter of the entire text uppercase, rest lowercase)?
Attempts:
2 left
💡 Hint
Think about combining functions to capitalize only the first letter of the whole text.
✗ Incorrect
PROPER capitalizes the first letter of each word, not just the first letter of the entire text. UPPER(LEFT(A2,1)) & LOWER(MID(A2,2,LEN(A2)-1)) capitalizes only the first letter and makes the rest lowercase.