blcexcel
Member
I'm a novice VBA user. This seems like it would be easy but I can't figure out how to accomplish it. I'm trying to create a template that can be used to upload data into a system. I have half of it working. Now I need to take column of consecutive values and paste them next to another column of values. The trick is the range will be dynamic. I have values for the range calculating if that helps. For example the first value will need to start at row 6 and end on row 1,000. The second value will need to start at 1,001 for and end at 2,000 and so on. I would attach a file but I'm new to this forum and I don't see how to attach a file. Thanks in advance for any assistance.
Input Table:
[pre]
[/pre]
Note I already have a solution for the Store List column.
Input Table:
[pre]
Code:
Merch List Start End
100_5000 6 1000
100_5001 1001 2000
100_5002 2001 3000
Desired Output:
Store Merch List
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
1 100_5000
.
.
.
Note I already have a solution for the Store List column.