Complete the formula to get unique values from the range A1:A10.
=UNIQUE([1])The UNIQUE function takes a range as input. Using A1:A10 correctly selects the range.
Complete the formula to get unique values from the range B2:B20 and sort them.
=SORT(UNIQUE([1]))The UNIQUE function requires a range like B2:B20. Then SORT arranges the unique values.
Fix the error in the formula to get unique values from C1:C15.
=UNIQUE([1])The correct range syntax uses a colon ':' between start and end cells, like C1:C15.
Fill both blanks to create a formula that extracts unique values from D1:D30 and counts them.
=COUNTA(UNIQUE([1])) + [2]
The UNIQUE function needs the range D1:D30. Adding 0 keeps the count unchanged.
Fill all three blanks to create a formula that extracts unique values from E2:E25, sorts them, and returns the third item.
=INDEX(SORT(UNIQUE([1])), [2], [3])
The formula extracts unique values from E2:E25, sorts them, then INDEX returns the 3rd row and 1st column value.