nathanzumbaugh
New Member
- Joined
- Jan 7, 2009
- Messages
- 9
I haven't seen a post with this specific question yet.
I am trying to use a command control click button to:
1-cut range of cells from one sheet to another sheet
2-this range would be inserted into the destination sheet below a specific named cell in the next available row
Here is the current VBA:
----
Private Sub CommandButton1_Click()
Worksheets("gjswork").Range("d4:l4").Copy Worksheets("summary").Range("d4:l4")
Worksheets("gjswork").Range("d4:l4").ClearContents
End Sub
-----
There will obviously need to be some lines added to accomplish the requirement of adding the data below a certain cell with a name.
The selected data would be put under the cell on sheet Summary below the cell named gjssum, starting in D8.
I apologize in advance for errors in this post submission.
I am trying to use a command control click button to:
1-cut range of cells from one sheet to another sheet
2-this range would be inserted into the destination sheet below a specific named cell in the next available row
Here is the current VBA:
----
Private Sub CommandButton1_Click()
Worksheets("gjswork").Range("d4:l4").Copy Worksheets("summary").Range("d4:l4")
Worksheets("gjswork").Range("d4:l4").ClearContents
End Sub
-----
There will obviously need to be some lines added to accomplish the requirement of adding the data below a certain cell with a name.
The selected data would be put under the cell on sheet Summary below the cell named gjssum, starting in D8.
I apologize in advance for errors in this post submission.