I have a query in Access that is producing this:
V1 V2 Count
Group 1 PT1, PT2, PT3 1
Group 1 PT4, PT5 1
Group 1 PT5,PT6 1
Group 2 PT7 2
Group 3 PT8, PT9 1
But I need it to create a new record for the comma separated values. The data should look like this:
V1 V2 Count
Group 1 PT1 1
Group 1 PT2 1
Group 1 PT3 1
Group 1 PT4 1
Group 1 PT5 2
Group 1 PT6 1
Group 2 PT7 2
Group 3 PT9 1
Group 3 PT8 1
Can anyone provide the code that would make this happen?
V1 V2 Count
Group 1 PT1, PT2, PT3 1
Group 1 PT4, PT5 1
Group 1 PT5,PT6 1
Group 2 PT7 2
Group 3 PT8, PT9 1
But I need it to create a new record for the comma separated values. The data should look like this:
V1 V2 Count
Group 1 PT1 1
Group 1 PT2 1
Group 1 PT3 1
Group 1 PT4 1
Group 1 PT5 2
Group 1 PT6 1
Group 2 PT7 2
Group 3 PT9 1
Group 3 PT8 1
Can anyone provide the code that would make this happen?