whudson1980
New Member
- Joined
- Dec 10, 2013
- Messages
- 13
OK, first off, I just want to say that I am kinda proud that I answered someones question here on the forum, to give back a little. And I was proud that I, as an amateur was actually able to help. lol. OK, moving on to the question:
I have a VBA code that asks for several variables. 3 to be exact. Lets call them variable1, variable2, and variable3. All attained through input boxes.
Then there's a sheet ( lets call it Incident Numbers ) that has a list of numbers from A10:A50
I need code to:
Go to Sheet called "Lists" , find the next available row, and copy Sheets("Incident Numbers").Cells("A:10") to column A, variable1 to columnB, variable2 to columnC, etc.
then do the same for Incident Numbers A:11. . . A:12. . .etc. . . and then stop when the range in Incident Numbers column A is blank.
So if Sheets("Incidents has column A as :
564
68
65
56
6
8
98
Then Sheets("Lists") should look like:
564 variable1 variable2 variable3
68 varaible1. . .etc.
Any ideas?
So, just to be clear
I have a VBA code that asks for several variables. 3 to be exact. Lets call them variable1, variable2, and variable3. All attained through input boxes.
Then there's a sheet ( lets call it Incident Numbers ) that has a list of numbers from A10:A50
I need code to:
Go to Sheet called "Lists" , find the next available row, and copy Sheets("Incident Numbers").Cells("A:10") to column A, variable1 to columnB, variable2 to columnC, etc.
then do the same for Incident Numbers A:11. . . A:12. . .etc. . . and then stop when the range in Incident Numbers column A is blank.
So if Sheets("Incidents has column A as :
564
68
65
56
6
8
98
Then Sheets("Lists") should look like:
564 variable1 variable2 variable3
68 varaible1. . .etc.
Any ideas?
So, just to be clear
Last edited: