UNIQUE
Return the distinct values from a range, removing duplicates.
UNIQUE outputs each value only once. Pair it with SORT or COUNTIF to build clean summaries and dropdown sources.
Excel
=UNIQUE(A2:A100)Google Sheets
=UNIQUE(A2:A100)How it works
- 1A2:A100 is the range.
- 2Duplicates are removed; each value appears once.