Forum Discussion
Remove duplicates in drop list
- Sep 21, 2022
The best way to do this at present is with the intermediate list using:
=SORT(UNIQUE(range))
Then refer to the spill using # notation in the data validation menu. Unfortunately, data validation won't accept UNIQUE so we must make do. It's interesting that TAKE and DROP can be used in data validation but I don't believe there's a way to use them and only pull unique values if UNIQUE is off the table.
The best way to do this at present is with the intermediate list using:
=SORT(UNIQUE(range))
Then refer to the spill using # notation in the data validation menu. Unfortunately, data validation won't accept UNIQUE so we must make do. It's interesting that TAKE and DROP can be used in data validation but I don't believe there's a way to use them and only pull unique values if UNIQUE is off the table.
Thanks Patrick2788 ! You're the boss !