0
0
Google Sheetsspreadsheet~20 mins

UPPER, LOWER, PROPER in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Case Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
1: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")
Agood morning
BGOOD MORNING
CGood Morning
DGoOd MoRnInG
Attempts:
2 left
💡 Hint
UPPER converts all letters to uppercase.
📊 Formula Result
intermediate
1: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")
Ahello world
BHELLO WORLD
CHello World
DhElLo WoRlD
Attempts:
2 left
💡 Hint
LOWER changes all letters to lowercase.
📊 Formula Result
advanced
1: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")
AJohn DOE Smith
Bjohn doe smith
CJOHN DOE SMITH
DJohn Doe Smith
Attempts:
2 left
💡 Hint
PROPER capitalizes the first letter of each word and makes the rest lowercase.
Function Choice
advanced
1: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?
A=UPPER("mArY aNnE")
B=LOWER("mArY aNnE")
C=PROPER("mArY aNnE")
D=CONCATENATE("mArY aNnE")
Attempts:
2 left
💡 Hint
Think about which function capitalizes the first letter of each word.
🎯 Scenario
expert
2: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)?
A=UPPER(LEFT(A2,1)) & LOWER(MID(A2,2,LEN(A2)-1))
B=LOWER(A2)
C=UPPER(A2)
D=PROPER(A2)
Attempts:
2 left
💡 Hint
Think about combining functions to capitalize only the first letter of the whole text.