I have a worksheet with over 8,000 rows and each one as 1 of 29 words as an identifier in column A. I would like to write a VBA script that will parse all of the rows, group them by the identifier in column A and export each group into a new work sheet and name each worksheet as its identifier
For example if this is my data:
Column A Column B Column C
X cat blue
Y dog red
Z bird green
Y whale yellow
Z tiger black
X wolf purple
I would like this output for Sheet 1 named X:
Column A Column B Column C
X cat blue
X wolf purple
I would like this output for Sheet 2 named Y:
Column A Column B Column C
Y dog red
Y whale yellow
And this output for Sheet 3 named Z:
Column A Column B Column C
Z bird green
Z tiger black