supermanjohn01
New Member
- Joined
- Jul 10, 2018
- Messages
- 26
What is the code I would use in a command button to copy the excel page, so it can be posted to a Word Document and others?
[COLOR=#333333]Private Sub CommandButton9_Click()[/COLOR]
[COLOR=#333333]Sheets("Summary").UsedRange.Copy[/COLOR]
[COLOR=#333333]End Sub
[/COLOR]
[COLOR=#333333]Sub MakeCopy()[/COLOR]
[COLOR=#333333]Sheets("Summary").UsedRange.Copy[/COLOR]
[COLOR=#333333]End
[/COLOR]
Sub MakeCopy ()
'This macro copies data from A1:B1 and pastes to H16
macro code here
End Sub