0
0
Google Sheetsspreadsheet~5 mins

UNIQUE function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the UNIQUE function do in Google Sheets?
The UNIQUE function returns a list of unique values from a range or array, removing any duplicates.
Click to reveal answer
beginner
How do you write a UNIQUE function to get unique values from cells A1 to A10?
You write =UNIQUE(A1:A10). This will list all unique values found in that range.
Click to reveal answer
intermediate
Can UNIQUE function handle multiple columns? If yes, how?
Yes, UNIQUE can handle multiple columns. For example, =UNIQUE(A1:B10) returns unique rows considering both columns together.
Click to reveal answer
beginner
What happens if the UNIQUE function finds no duplicates in the range?
It returns the original list as is, because all values are already unique.
Click to reveal answer
intermediate
How does UNIQUE function treat blank cells in the range?
UNIQUE treats blank cells as a value and will return a single blank if blanks exist in the range.
Click to reveal answer
What formula would you use to get unique values from column C?
A=SORT(C:C)
B=UNIQUE(A1:B10)
C=FILTER(C:C, C:C>0)
D=UNIQUE(C:C)
If you want unique rows from columns A and B together, which formula is correct?
A=UNIQUE(B1:B10)
B=UNIQUE(A1:A10)
C=UNIQUE(A1:B10)
D=UNIQUE(A1:A10, B1:B10)
What will UNIQUE return if the range has no duplicates?
AThe original list unchanged
BAn error
CAn empty list
DOnly the first value
How does UNIQUE treat blank cells in the input range?
AReturns a single blank if blanks exist
BReturns multiple blanks for each blank cell
CIgnores all blank cells
DThrows an error
Which of these is NOT a use of UNIQUE function?
ARemove duplicate values
BSort values alphabetically
CList unique rows from multiple columns
DExtract unique entries from a list
Explain how the UNIQUE function works and give an example of its use.
Think about how you find unique names in a list.
You got /3 concepts.
    Describe how UNIQUE handles multiple columns and blank cells.
    Consider how rows are compared and how empty cells appear.
    You got /2 concepts.