Hi
I've got a problem I've not come across before. I've got an Excel datasource I've loaded into SQL table and I am trying to transform into something a bit more sensible. What I've got is column A in the SQL table from Excel that contains all 3 fields of data but I need to add columns to replace the groups of Owner and Stage
Note a user can have many stages and a stage can have many projects. Project names are unique.
example
My Source Table that I have imported from Excel has 1 column
[ColumnA]
Owner: David Jones
Stage1: Suspect
Project A
Project B
Stage2:Qualified Suspect
Project C
Project D
Owner: John Doe
Stage1:Suspect
Project E
Stage2:Qualified Suspect
Project F
Project G
then I want my target rows to look like
[owner] [stage] [project]
David Jones Stage1:Suspect ProjectA
David Jones Stage1:Suspect ProjectB
David Jones Stage2:Qualified Suspect ProjectC
David Jones Stage1:Qualified Suspect ProjectD
John Doe Stage1:Suspect ProjectE
John Doe Stage1:Qualified Suspect ProjectF
John Doe Stage1:Qualified Suspect ProjectG
Thanks in advance
G