I have a table with a list of items. This is essentially an export from a problem tracking tool. One of the columns in this table contains comma-separated values. I am looking for a way to create separate records for the individual values โโof multi-valued records.
Example: (this is a simplified example, the real case contains about a dozen columns)
Initial data:
ID | Title | Areas Affected | 1 | Issue title A | Area X, Area Y | 2 | Issue title B | Area Y, Area Z | 3 | Issue title C | Area X, Area Z |
What am I trying to do:
ID | Title | Areas Affected | 1 | Issue title A | Area X | 1 | Issue title A | Area Y | 2 | Issue title B | Area Y | 2 | Issue title B | Area Z | 3 | Issue title C | Area X | 3 | Issue title C | Area Z |
Well, now there are duplicate entries for identifiers and captions?
Is there a formula, macro or VBA script to achieve this?
ulmas source share