Hello,
I have a worksheet (Input) where users will update information. I then want this info to be copied and pasted into another worksheet (Output) at the end of the day, by click of a button. I have found the below code which copies the first row and pastes it into the first row of the Output worksheet. What can I do to then get this to loop the next 16 rows in the Input worksheet and paste them into the output and by finding the next empty row?
#Private Sub SubmitDailys_Click()
'Copy cells and paste to new worksheet
Sheets("Input").Range("A7, C7, e7, G7, I7, K7, M7, P7, R7:V7").Copy Destination:=Sheets("Output").Range("A2")
End Sub#
I have a worksheet (Input) where users will update information. I then want this info to be copied and pasted into another worksheet (Output) at the end of the day, by click of a button. I have found the below code which copies the first row and pastes it into the first row of the Output worksheet. What can I do to then get this to loop the next 16 rows in the Input worksheet and paste them into the output and by finding the next empty row?
#Private Sub SubmitDailys_Click()
'Copy cells and paste to new worksheet
Sheets("Input").Range("A7, C7, e7, G7, I7, K7, M7, P7, R7:V7").Copy Destination:=Sheets("Output").Range("A2")
End Sub#
Last edited: