Challenge - 5 Problems
Duplicate Remover Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Removing duplicates with UNIQUE function
You have a list of names in cells A1:A6:
Which formula in cell B1 will return the list without duplicates?
John
Mary
John
Anna
Mary
TomWhich formula in cell B1 will return the list without duplicates?
Attempts:
2 left
💡 Hint
Use the function that extracts unique values from a range.
✗ Incorrect
The UNIQUE function returns only unique values from the range, removing duplicates. REMOVE_DUPLICATES is not a valid function. FILTER with COUNTIF=1 returns only values that appear once, excluding duplicates that appear multiple times. SORT just sorts the list but does not remove duplicates.
❓ Function Choice
intermediate1:30remaining
Choose the correct function to remove duplicates
You want to remove duplicate entries from a list in Google Sheets. Which function should you use?
Attempts:
2 left
💡 Hint
Think about the function that returns unique values.
✗ Incorrect
UNIQUE() is the correct function to remove duplicates by returning unique values. REMOVE_DUPLICATES() and DISTINCT() do not exist in Google Sheets. FILTER() is used to filter data but does not remove duplicates by itself.
🎯 Scenario
advanced2:30remaining
Removing duplicates but keeping the first occurrence only
You have a list of product IDs in column A with duplicates. You want to create a list in column B that keeps only the first occurrence of each product ID, preserving the original order. Which formula should you use in B1?
Attempts:
2 left
💡 Hint
UNIQUE preserves the first occurrence and order by default.
✗ Incorrect
UNIQUE returns the first occurrence of each value in the order they appear. SORT would reorder the list alphabetically or numerically. FILTER with MATCH and ROW is complex and unnecessary here. ARRAYFORMULA with COUNTIF returns blanks for duplicates but leaves gaps.
📊 Formula Result
advanced2:30remaining
Removing duplicates with multiple columns
You have data in columns A and B:
Which formula in D1 will return unique rows based on both columns?
A1:B5
1, Apple
2, Banana
1, Apple
3, Cherry
2, BananaWhich formula in D1 will return unique rows based on both columns?
Attempts:
2 left
💡 Hint
UNIQUE works on multiple columns to remove duplicate rows.
✗ Incorrect
UNIQUE applied to a range with multiple columns removes duplicate rows considering all columns. Option A concatenates columns but returns a single column of text, not rows. FILTER with COUNTIF only checks column A and does not remove duplicates properly. SORT just sorts the unique rows but does not affect duplicates removal.
❓ data_analysis
expert3:00remaining
Count unique values ignoring blanks
You have a list of values in A1:A10 with some duplicates and blank cells:
Which formula correctly counts the number of unique non-blank values?
Apple
Banana
Apple
Cherry
Banana
Cherry
Durian
AppleWhich formula correctly counts the number of unique non-blank values?
Attempts:
2 left
💡 Hint
COUNTUNIQUE counts unique values; FILTER removes blanks.
✗ Incorrect
COUNTUNIQUE counts unique values but includes blanks if present. FILTER removes blank cells before counting unique values. COUNTA counts non-blank cells but does not count unique values correctly when used with UNIQUE. Option B counts unique including blanks, so it is incorrect.