I have a column with 1000 rows and I want a list of distinct values. Any ideas of the best way to do this?
For example
the list:
fred
john
fred
james
sue
sue
jane
distinct list:
fred
john
james
sue
jane
I am doing this too often to import into access and use Select Distinct query.