Attribute X
12345
12345/123456
12345/123456/12345
123456/12345
What I need is this result:
Attribute X AttributeNew1 AttributeNew2 AttributeNew3
12345 12345 <blank> <blank>
12345/123456 12345 123456 <blank>
12345/123456/12345 12345 123456 12345
123456/12345 123456 12345 <blank>
What I get now is this:
Attribute X AttributeNew1 AttributeNew2 AttributeNew3
12345 <blank> <blank> <blank>
12345/123456 123456 <blank> <blank>
12345/123456/12345 123456 12345 <blank>
123456/12345 12345 <blank> <blank>
In other words, the splitter does not transfer the first value to a new attribute. I've been trying a lot of different approaches without any luck. Ant ideas on what to do?
Thank you!
Chris