bobkap
Active Member
- Joined
- Nov 22, 2009
- Messages
- 323
- Office Version
- 365
- Platform
- Windows
- Mobile
- Web
I have many rows of data that I need to break-up by customer and move to another worksheet so that each customer has their own sheet. I've figured out how to create the new sheets and move the data, but I'm lost as to how to copy rows of data for just one customer at a time. Here's an example of what my data looks like:
[TABLE="width: 377"]
<colgroup><col><col><col><col><col></colgroup><tbody>[TR]
[TD]Customer[/TD]
[TD]Category[/TD]
[TD] Date[/TD]
[TD]Code[/TD]
[TD] Amount Paid [/TD]
[/TR]
[TR]
[TD]Bonneville Co.[/TD]
[TD]A[/TD]
[TD="align: right"]12/22/2017[/TD]
[TD]BG[/TD]
[TD] $35.00[/TD]
[/TR]
[TR]
[TD]Bracketts[/TD]
[TD]R[/TD]
[TD="align: right"]12/5/2017[/TD]
[TD]BC[/TD]
[TD] $48.00[/TD]
[/TR]
[TR]
[TD]Bracketts[/TD]
[TD]A[/TD]
[TD="align: right"]12/12/2017[/TD]
[TD]BC[/TD]
[TD] $112.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]G[/TD]
[TD="align: right"]12/21/2017[/TD]
[TD]CS [/TD]
[TD] $120.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]G[/TD]
[TD="align: right"]12/22/2017[/TD]
[TD]CS [/TD]
[TD] $361.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]H[/TD]
[TD="align: right"]12/21/2017[/TD]
[TD]CS [/TD]
[TD] $220.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]D[/TD]
[TD="align: right"]12/12/2017[/TD]
[TD]CS [/TD]
[TD] $200.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]L[/TD]
[TD="align: right"]12/12/2017[/TD]
[TD]CS [/TD]
[TD] $200.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]A[/TD]
[TD="align: right"]12/9/2017[/TD]
[TD]LO[/TD]
[TD] $110.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]S[/TD]
[TD="align: right"]12/9/2017[/TD]
[TD]LO[/TD]
[TD] $110.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]C[/TD]
[TD="align: right"]12/8/2017[/TD]
[TD]LO[/TD]
[TD] $110.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]D[/TD]
[TD="align: right"]12/8/2017[/TD]
[TD]LO[/TD]
[TD] $110.00
[/TD]
[/TR]
</tbody>[/TABLE]
i thought I might use the sub-total function to separate the companies, but then I'm puzzled as to how I capture just one company's rows of data at a time to copy and paste to another sheet.
[TABLE="width: 377"]
<colgroup><col><col><col><col><col></colgroup><tbody>[TR]
[TD]Customer[/TD]
[TD]Category[/TD]
[TD] Date[/TD]
[TD]Code[/TD]
[TD] Amount Paid [/TD]
[/TR]
[TR]
[TD]Bonneville Co.[/TD]
[TD]A[/TD]
[TD="align: right"]12/22/2017[/TD]
[TD]BG[/TD]
[TD] $35.00[/TD]
[/TR]
[TR]
[TD]Bracketts[/TD]
[TD]R[/TD]
[TD="align: right"]12/5/2017[/TD]
[TD]BC[/TD]
[TD] $48.00[/TD]
[/TR]
[TR]
[TD]Bracketts[/TD]
[TD]A[/TD]
[TD="align: right"]12/12/2017[/TD]
[TD]BC[/TD]
[TD] $112.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]G[/TD]
[TD="align: right"]12/21/2017[/TD]
[TD]CS [/TD]
[TD] $120.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]G[/TD]
[TD="align: right"]12/22/2017[/TD]
[TD]CS [/TD]
[TD] $361.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]H[/TD]
[TD="align: right"]12/21/2017[/TD]
[TD]CS [/TD]
[TD] $220.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]D[/TD]
[TD="align: right"]12/12/2017[/TD]
[TD]CS [/TD]
[TD] $200.00[/TD]
[/TR]
[TR]
[TD]Campus Center[/TD]
[TD]L[/TD]
[TD="align: right"]12/12/2017[/TD]
[TD]CS [/TD]
[TD] $200.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]A[/TD]
[TD="align: right"]12/9/2017[/TD]
[TD]LO[/TD]
[TD] $110.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]S[/TD]
[TD="align: right"]12/9/2017[/TD]
[TD]LO[/TD]
[TD] $110.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]C[/TD]
[TD="align: right"]12/8/2017[/TD]
[TD]LO[/TD]
[TD] $110.00[/TD]
[/TR]
[TR]
[TD]Lowell Inc.[/TD]
[TD]D[/TD]
[TD="align: right"]12/8/2017[/TD]
[TD]LO[/TD]
[TD] $110.00
[/TD]
[/TR]
</tbody>[/TABLE]
i thought I might use the sub-total function to separate the companies, but then I'm puzzled as to how I capture just one company's rows of data at a time to copy and paste to another sheet.