I have a column of data pulled from a database that I need to sort out into graphs and visual data. The column can contain one or more different strings in each cell, but I need to pick out the unique strings. The strings are separated by a semicolon and contain letters, numbers and spaces.
Example:
- ABC-23 Up;BCD-1 Hi;CDE-5
- CDE-5
- ABC-23 Up;HJK-3
I want to end up in a column of:
- ABC-23 Up
- BCD-1 Hi
- CDE-5
- HJK-3
Currently I use the excel function "text to columns" to split apart the column into however many cells I need based on the ';' as the split, and then do an advanced filter to remove duplicates but I was hoping there is a more automated way in case someone else has to pull the same information. Any ideas?