Complete the formula to remove duplicates from the range A1:A10.
=UNIQUE([1])The UNIQUE function removes duplicates from the specified range. Here, we want to remove duplicates from A1 to A10, so the correct range is A1:A10.
Complete the formula to remove duplicates from the range B2:B20 and sort the results.
=SORT(UNIQUE([1]))The formula first removes duplicates from B2:B20 using UNIQUE, then sorts the unique values with SORT.
Fix the error in the formula that tries to remove duplicates from C1:C15 but is missing a function.
=[1](C1:C15)The UNIQUE function is used to remove duplicates from a range. REMOVE is not a valid Excel function.
Fill both blanks to create a formula that removes duplicates from D1:D20 and returns only values greater than 10.
=FILTER(UNIQUE([1]), [2] > 10)
The UNIQUE function removes duplicates from D1:D20. The FILTER function then returns only those unique values greater than 10 by comparing the range D1:D20 to 10.
Fill all three blanks to create a formula that removes duplicates from E1:E30, sorts them descending, and returns only values less than 50.
=FILTER(SORT(UNIQUE([1]), , [2]), [3] < 50)
The UNIQUE function removes duplicates from E1:E30. SORT sorts the unique values descending by using FALSE for ascending argument. FILTER returns only values less than 50 from the range E1:E30.