Challenge - 5 Problems
Duplicate Remover Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2: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?Attempts:
2 left
💡 Hint
The UNIQUE function returns only the first occurrence of each item, removing duplicates.
✗ Incorrect
The UNIQUE function scans the range and returns only unique values in the order they first appear. So duplicates like the second "Apple" and second "Banana" are removed.
❓ Function Choice
intermediate2: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?
Attempts:
2 left
💡 Hint
Think about the function that extracts only distinct values.
✗ Incorrect
The UNIQUE function returns a list of distinct values from a range, effectively removing duplicates.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
UNIQUE has an option to keep last occurrences instead of first.
✗ Incorrect
The UNIQUE function's third argument, when TRUE, keeps the last occurrence of each value. So =UNIQUE(A1:A7, FALSE, TRUE) returns unique values keeping last occurrences.
📊 Formula Result
advanced2:00remaining
What error occurs with this formula?
What error will this formula produce?
=UNIQUE(A1:A5, TRUE, TRUE) if A1:A5 contains text values?Attempts:
2 left
💡 Hint
Check the meaning of the second argument in UNIQUE.
✗ Incorrect
The second argument in UNIQUE is 'by_col' which expects TRUE or FALSE. Setting it TRUE means to check columns, but if the range is a single column with text, it causes a #VALUE! error.
❓ data_analysis
expert2: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?Attempts:
2 left
💡 Hint
Count distinct colors ignoring duplicates.
✗ Incorrect
The unique colors are Red, Blue, Green, Yellow, Black, so 5 unique values. But counting carefully: Red, Blue, Green, Yellow, Black = 5 unique values. The correct count is 5, so option C is correct.