I have a DBF file that has a list of ID's, seperated by a comma, in a single field. I also have a field that gives me a count of the number of IDs. I need to add an attribute that gives each exploded InterimID (see example below) their sequence in the list. I can split that list, explode it to get each ID and I thought about using an AttributeValueMapper with the _List(0) number, but how do I add a value as a sequence attribute to each exploded ID when the count could be anything? Am I on the wrongtrack?
Example:
Line_ID StartID InterimID NoInterimID EndID
1234 789 234,543,756 3 8976
Is this a clear enough example?