Solved

Converting Unique Values into Individual Words

  • 1 March 2018
  • 1 reply
  • 0 views

Badge

I need to create a list (or repository) of all the unique words in multiple data sets attribute tables. I was able to create a list of all the unique attributes, but now I need to go one more level and break out those attributes into individual words.

For example, let's say my unique list of attributes are:

The Dog

 

The Cat

 

Bird

 

Three Donkeys

I need to take that list and create this list with it:

 

The

 

Dog

 

Cat

 

Bird

 

Three

 

Donkeys

Does anyone know how I might achieve that?

Thanks.

icon

Best answer by mikey 1 March 2018, 16:39

View original

1 reply

Badge

AttributeSplitter and ListExploder seem to do the trick.

Reply