Dynamic function (Microsoft 365)
If you have Excel 365 then the “UNIQUE” function can provide a unique list. Simply enter a formula using the UNIQUE function. Note that because it is a dynamic function, it will change size depending if the original list values change. So make sure nothing is below where you write this formula
The formula is created using the following parameters
=UNIQUE(array, [by_cols], [exactly_once])
Eg “=UNIQUE(I12:J16, FALSE, FALSE)”
The “array” section is the range of data you want to make unique
The [by_cols] part indicates if you want to filter by column (TRUE) or rows (FALSE). Rows is the default and probably what you will use most often.
If [exactly_once] is set to FALSE then duplicates will be removed. If it is set to TRUE then the resulting table will only show data which appears once. In other words ALL duplicates will be removed and only rows (or columns) which do not have any duplicates will remain.
Because it’s formula-driven, your list updates automatically as data changes—great for dashboards.