Complete the formula to remove duplicates from the range A1:A10.
=UNIQUE([1])The UNIQUE function removes duplicate values from the specified range. Here, the range A1:A10 is used to get unique values.
Complete the formula to remove duplicates from columns A and B together (rows 1 to 10).
=UNIQUE([1])To remove duplicates based on multiple columns, provide the range covering those columns. Here, A1:B10 covers columns A and B for rows 1 to 10.
Fix the error in the formula to remove duplicates from the range C2:C20.
=UNIQUE([1])The correct range syntax uses a colon ':' between start and end cells. 'C2:C20' is valid, while others cause errors.
Fill both blanks to remove duplicates from the range D1:E15 and sort the results ascending.
=SORT(UNIQUE([1]), [2], TRUE)
The UNIQUE function removes duplicates from D1:E15. SORT then sorts by the first column (1) ascending (TRUE).
Fill all three blanks to remove duplicates from A2:C20, sort by the second column descending, and display only the first 5 rows.
=INDEX(SORT(UNIQUE([1]), [2], [3]), SEQUENCE(5))
UNIQUE removes duplicates from A2:C20. SORT sorts by column 2 descending (FALSE). INDEX with SEQUENCE(5) shows the first 5 rows.