Recall & Review
beginner
What does the
UNIQUE() function do in Google Sheets?The
UNIQUE() function returns a list of unique values from a range, removing any duplicates.Click to reveal answer
beginner
How do you remove duplicate rows from a dataset in Google Sheets?
You can use the
Data > Data cleanup > Remove duplicates menu option or use the UNIQUE() function to create a list without duplicates.Click to reveal answer
beginner
What happens if you use
=UNIQUE(A2:A10) on a list with repeated names?It will return a list of names from A2 to A10 but only show each name once, removing repeated entries.
Click to reveal answer
intermediate
Can
UNIQUE() function handle multiple columns?Yes,
UNIQUE() can take multiple columns as input and will remove duplicate rows based on all columns combined.Click to reveal answer
intermediate
What is the difference between using the menu option 'Remove duplicates' and the
UNIQUE() function?The menu option removes duplicates directly from the original data, changing it. The
UNIQUE() function creates a new list without duplicates, leaving original data unchanged.Click to reveal answer
Which function in Google Sheets removes duplicate values from a range?
✗ Incorrect
The UNIQUE() function returns only unique values from a range, removing duplicates.
What does the 'Remove duplicates' option under Data menu do?
✗ Incorrect
It removes duplicate rows from the selected range, keeping only unique rows.
If you want to keep the original data unchanged but get a list without duplicates, what should you use?
✗ Incorrect
UNIQUE() creates a new list without duplicates, leaving original data intact.
Can UNIQUE() remove duplicates based on multiple columns together?
✗ Incorrect
UNIQUE() treats multiple columns as combined keys and removes duplicate rows accordingly.
What will =UNIQUE(A2:A10) return if A2:A10 contains: Apple, Banana, Apple, Orange?
✗ Incorrect
UNIQUE() returns only one instance of each value, so duplicates like the second Apple are removed.
Explain how to remove duplicates from a list in Google Sheets without changing the original data.
Think about a function that filters unique values.
You got /3 concepts.
Describe the difference between using the 'Remove duplicates' menu option and the UNIQUE() function.
One changes your data directly, the other keeps it safe.
You got /3 concepts.