At our warehouse we ship hundreds of boxes everyday. Warehouse guys load boxes on pallets and then scan pallet ID's and box ID's, then upload the scanned data to the system.
When I download the records, it is all in one line containing pallet IDs and Box IDs as shown below. Pallets ID's (bold in this example) are in numerical order.
So, the A1 value is always the first pallet ID.
Excel 2007
My goal is to separate them by pallets as shown below. Boxes don't need to be sorted. Sometimes there are 10 pallets, sometimes 20 pallets, you never know. So the loop must work for as long as there are pallets.
Can someone please help with an automate job to do this? We have been doing this manually (find next pallet ID, cut and paste on the next column) and looking for a faster way. Thank you very much!
When I download the records, it is all in one line containing pallet IDs and Box IDs as shown below. Pallets ID's (bold in this example) are in numerical order.
So, the A1 value is always the first pallet ID.
Excel Workbook | |||
---|---|---|---|
A | |||
1 | 000000004352 | ||
2 | 136016484001 | ||
3 | 018490316001 | ||
4 | 017023735001 | ||
5 | 018619171001 | ||
6 | 018619165001 | ||
7 | 017068487001 | ||
8 | 000000004353 | ||
9 | 017070233001 | ||
10 | 017053072001 | ||
11 | 017052845001 | ||
12 | 018617358001 | ||
13 | 017052885001 | ||
14 | 136028205001 | ||
15 | 017053056001 | ||
16 | 018210505001 | ||
17 | 000000004354 | ||
18 | 136004557001 | ||
19 | 017060663001 | ||
20 | 017070806001 | ||
21 | 017060659001 | ||
22 | 017044247001 | ||
23 | 018040312001 | ||
24 | 017060667001 | ||
25 | 000000004355 | ||
26 | 136027691001 | ||
27 | 017067792001 | ||
28 | 017161670001 | ||
29 | 017060246001 | ||
Before |
My goal is to separate them by pallets as shown below. Boxes don't need to be sorted. Sometimes there are 10 pallets, sometimes 20 pallets, you never know. So the loop must work for as long as there are pallets.
Can someone please help with an automate job to do this? We have been doing this manually (find next pallet ID, cut and paste on the next column) and looking for a faster way. Thank you very much!
Excel Workbook | ||||||
---|---|---|---|---|---|---|
A | B | C | D | |||
1 | 000000004352 | 000000004353 | 000000004354 | 000000004355 | ||
2 | 136016484001 | 017070233001 | 136004557001 | 136027691001 | ||
3 | 018490316001 | 017053072001 | 017060663001 | 017067792001 | ||
4 | 017023735001 | 017052845001 | 017070806001 | 017161670001 | ||
5 | 018619171001 | 018617358001 | 017060659001 | 017060246001 | ||
6 | 018619165001 | 017052885001 | 017044247001 | |||
7 | 017068487001 | 136028205001 | 018040312001 | |||
8 | 017053056001 | 017060667001 | ||||
9 | 018210505001 | |||||
After |