Hi Everyone, I am working with the results of a form, and cleaning up the answers. I have ran into a roadblock, and was hoping someone here can help me with this issue.
There are 2 fields which have potentially multiple entries and I would like to split those into different rows. for example:
the table above is a sample data, 3rd column has 3 entries and the 4th column also has 3 entries corresponding to the values in column 3. Is there a way to make this look like the table below?
Is there a way to split the data dynamically, there could be 1 entry or 10. any help or guidance would be appreciated
thanks
There are 2 fields which have potentially multiple entries and I would like to split those into different rows. for example:
Vendor 1 | this is a test | Blue Box-Marketing;Mustard-Marketing;Classic Red-Marketing; | blue box - 234,000; Mustard - 345,000; Classic - 135,000; |
the table above is a sample data, 3rd column has 3 entries and the 4th column also has 3 entries corresponding to the values in column 3. Is there a way to make this look like the table below?
Vendor 1 | This is a test | Blue Box Marketing | 234,000 |
Vendor 1 | This is a test | Mustard Marketing | 345,000 |
Vendor 1 | This is a test | Classic | 135,000 |
Is there a way to split the data dynamically, there could be 1 entry or 10. any help or guidance would be appreciated
thanks