jjefferson
Technical User
I have a workbook with one worksheet for each branch office; the name of the sheet is the branch code.
The last sheet in the workbook (called "DATA", is a raw grid of data retrieved via SQL, and sorted in branch code order. Column A is the branch code, columns B to L have the rest of the data.
What I'd like to do is either row-by-row, or a selection of rows, copy columns B:L on the DATA sheet to columns A:K on the sheet bearing the branch's code. I don't care what happens to the DATA sheet during or after the process, if sequential destruction of values as they are copied is helpful.
The DATA sheet might look like this:
So, I'd like to copy/move all the "ATL" entries to the sheet named "ATL", and so on. I'm stalled and even a firm conceptual shove would help a lot at this point.
Thanks!
The last sheet in the workbook (called "DATA", is a raw grid of data retrieved via SQL, and sorted in branch code order. Column A is the branch code, columns B to L have the rest of the data.
What I'd like to do is either row-by-row, or a selection of rows, copy columns B:L on the DATA sheet to columns A:K on the sheet bearing the branch's code. I don't care what happens to the DATA sheet during or after the process, if sequential destruction of values as they are copied is helpful.
The DATA sheet might look like this:
Code:
A B C D
1 ATL 1 2 3
2 ATL 1 2 3
3 HOU 1 2 3
4 NYC 1 2 3
5 NYC 1 2 3
Thanks!