Hello all,
I am building an app for a gymnastics tournament where participants for a certain exercise are listed with their sequential number. For example:
Exercise A has 5 participants with their unique ID number concatenated with their sequential number (delimiter "-"), concatenated into one text string using delimiter ";". So it is a nested concatenated list of participants and their sequence number: [1-1;2-5;3-2;4-4;5-3], meaning participantID 1 is first, participantID 2 is 5th and so on.
I want to split these strings into a two column collection like so:
ID Sequence
1 1
2 5
3 2
4 4
5 3
Anybody have an idea how to do this?