0
0
Excelspreadsheet~20 mins

UPPER, LOWER, PROPER in Excel - 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 have the text Good Morning in a cell. What will the formula =UPPER("Good Morning") return?
Excel
=UPPER("Good Morning")
A"GOOD MORNING"
B"good morning"
C"Good Morning"
D"GoOd MoRnInG"
Attempts:
2 left
💡 Hint
UPPER converts all letters to capital letters.
📊 Formula Result
intermediate
1: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")
A"hElLo WoRlD"
B"HELLO WORLD"
C"Hello World"
D"hello world"
Attempts:
2 left
💡 Hint
LOWER changes all letters to small letters.
📊 Formula Result
advanced
1: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")
A"john doe"
B"JOHN DOE"
C"John Doe"
D"John DOE"
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 "mIXeD CaSe" to "mixed case"?
You want to convert the text mIXeD CaSe to all lowercase letters. Which formula will do this?
A=LOWER("mIXeD CaSe")
B=PROPER("mIXeD CaSe")
C=LOWER(PROPER("mIXeD CaSe"))
D=UPPER("mIXeD CaSe")
Attempts:
2 left
💡 Hint
LOWER makes all letters small.
🎯 Scenario
expert
2: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?
A=LOWER(A2)
B=PROPER(A2)
C=UPPER(A2)
D=CONCAT(UPPER(LEFT(A2,1)),LOWER(MID(A2,2,LEN(A2))))
Attempts:
2 left
💡 Hint
PROPER capitalizes the first letter of each word automatically.