0
0
Excelspreadsheet~20 mins

Removing duplicates in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Duplicate Remover Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
What is the output of this formula removing duplicates?
Given the list in cells A1:A6: {"Apple", "Banana", "Apple", "Orange", "Banana", "Grape"}, what will be the output of the formula =UNIQUE(A1:A6) when entered in cell B1?
A["Apple", "Banana", "Orange", "Grape"]
B["Apple", "Banana", "Apple", "Orange", "Banana", "Grape"]
C["Apple", "Banana", "Orange"]
D["Apple", "Orange", "Grape"]
Attempts:
2 left
💡 Hint
The UNIQUE function returns only the first occurrence of each item, removing duplicates.
Function Choice
intermediate
2:00remaining
Which function removes duplicates from a list?
You have a list of names in column A. Which Excel function will create a new list without any repeated names?
ACOUNTIF
BFILTER
CSORT
DUNIQUE
Attempts:
2 left
💡 Hint
Think about the function that extracts only distinct values.
🎯 Scenario
advanced
2:00remaining
How to remove duplicates but keep the last occurrence?
You have a list in A1:A7: {"Cat", "Dog", "Cat", "Bird", "Dog", "Fish", "Cat"}. You want to create a list without duplicates but keeping the last occurrence of each item. Which formula in B1 will do this?
A=SORT(UNIQUE(A1:A7, FALSE, TRUE))
B=INDEX(A1:A7, SORT(MATCH(UNIQUE(A1:A7), A1:A7, 0),, -1))
C=SORT(UNIQUE(A1:A7),, -1)
D=SORTBY(UNIQUE(A1:A7), SEQUENCE(COUNTA(A1:A7)), -1)
Attempts:
2 left
💡 Hint
UNIQUE has an option to keep last occurrences instead of first.
📊 Formula Result
advanced
2:00remaining
What error occurs with this formula?
What error will this formula produce? =UNIQUE(A1:A5, TRUE, TRUE) if A1:A5 contains text values?
A#NAME? error
B#VALUE! error
CReturns unique values keeping last occurrences
DReturns unique values sorted ascending
Attempts:
2 left
💡 Hint
Check the meaning of the second argument in UNIQUE.
data_analysis
expert
2:00remaining
How many unique values after removing duplicates?
Given this list in A1:A10: {"Red", "Blue", "Red", "Green", "Blue", "Yellow", "Green", "Red", "Yellow", "Black"}, how many unique values will the formula =COUNTA(UNIQUE(A1:A10)) return?
A6
B7
C5
D4
Attempts:
2 left
💡 Hint
Count distinct colors ignoring duplicates.