I have a field with with multiple string separated by the ; symbol
Row 1: ca; do; ho;
Row 2: be; do
Row 3: ca; ho
I assign a Record ID to each row and then break of the string and go vertical
1. ca
1. do
1. ho
2. ch
2. do
3. ca
3. ho
I then assign the correct names
1. Cat
1. Dog
1. Horse
2. Chicken
2. Dog
3. Cat
3. Horse
I now need to put them back together horizontally (this is the part I can't figure out how to do.)
Record ID | Animals |
1 Cat; Dog; Horse
2 Chicken; Dog
3 Cat; Horse
This is obviously very simple data and what I really have is complex but if I could figure out the last part of above it will work.