I have a table that looks like so:
Group | Name | Comment | Tag 1 | Tag 2 | Tag 3
-------------------------------------------------------------------
gr1 Joe We are... SYSTEM SUGGESTION PAINPOINT
gr1 Joe I want... PROCESS ATTITUDE
And I need to run a macro that essentially generates this (I'm using Excel 2007)
Group | Name | Comment | Tag 1 | Tag 2 | Tag 3
-------------------------------------------------------------------
gr1 Joe We are... SYSTEM
gr1 Joe We are... SUGGESTION
gr1 Joe We are... PAINPOINT
gr1 Joe I want... PROCESS
gr1 Joe I want... ATTITUDE
So all tags get duplicated data but their own row. This allows me to now sort and pivot the information in one columns. I am currently not that good at VBA and would love some help with this particular question.
I hope that was clear enough.