Hi every one I have a table like below.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Category[/TD]
[TD]Score[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]A[/TD]
[TD]127[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]B[/TD]
[TD]184[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]A[/TD]
[TD]124[/TD]
[/TR]
[TR]
[TD]Fred[/TD]
[TD]C[/TD]
[TD]201[/TD]
[/TR]
[TR]
[TD]...[/TD]
[TD]...[/TD]
[TD]..[/TD]
[/TR]
</tbody>[/TABLE]
I want to separate the table based on "category column and save it in a new workbook and save the workbook to category name.
for example one of the workbooks will be "A" and it will contain
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Category[/TD]
[TD]Score[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]A[/TD]
[TD]127[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]A[/TD]
[TD]124[/TD]
[/TR]
</tbody>[/TABLE]
How can I do that with VBA?(there are a lot of categories and using filter will took a lot of time)
Thanks a lot in advance.
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Category[/TD]
[TD]Score[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]A[/TD]
[TD]127[/TD]
[/TR]
[TR]
[TD]Mike[/TD]
[TD]B[/TD]
[TD]184[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]A[/TD]
[TD]124[/TD]
[/TR]
[TR]
[TD]Fred[/TD]
[TD]C[/TD]
[TD]201[/TD]
[/TR]
[TR]
[TD]...[/TD]
[TD]...[/TD]
[TD]..[/TD]
[/TR]
</tbody>[/TABLE]
I want to separate the table based on "category column and save it in a new workbook and save the workbook to category name.
for example one of the workbooks will be "A" and it will contain
[TABLE="width: 500"]
<tbody>[TR]
[TD]Name[/TD]
[TD]Category[/TD]
[TD]Score[/TD]
[/TR]
[TR]
[TD]John[/TD]
[TD]A[/TD]
[TD]127[/TD]
[/TR]
[TR]
[TD]Jane[/TD]
[TD]A[/TD]
[TD]124[/TD]
[/TR]
</tbody>[/TABLE]
How can I do that with VBA?(there are a lot of categories and using filter will took a lot of time)
Thanks a lot in advance.