managementOptions
Instructor
I need to get user input to determine what row to copy from a large group of data to a specific row near the top of the spreadsheet.
My thought is to have the user enter the row number they want copied into cell A3. And then that row number would be copied into row 4. So, if the user enters the number 8 into cell A3, a macro could then copy row 8 and paste it into row 4.
So in pseudocode, I think it would something like
dim r as Long
r=the number in A3
Copy row r
move to row 4
paste row
If anyone can make that into real code, I would be very grateful.
My thought is to have the user enter the row number they want copied into cell A3. And then that row number would be copied into row 4. So, if the user enters the number 8 into cell A3, a macro could then copy row 8 and paste it into row 4.
So in pseudocode, I think it would something like
dim r as Long
r=the number in A3
Copy row r
move to row 4
paste row
If anyone can make that into real code, I would be very grateful.