Function reference · Array & filter

UNIQUE

Returns each distinct row of a range once, discarding duplicates.

UNIQUE(range)

UNIQUE is how you get a clean list of categories, regions or names out of a messy column — and it is the usual first step in building a summary table or a dropdown.

Arguments

ArgumentRequiredWhat it does
range Yes The range to de-duplicate.

Worked example

RegionRepSales
WestAna1200
EastBen900
WestCara1500
NorthDan600
EastEve1100
=UNIQUE(A2:A6)

Returns West, East, North.

Three distinct regions, in the order they first appear.

Gotchas

Related functions