ipbr21054
Well-known Member
- Joined
- Nov 16, 2010
- Messages
- 5,699
- Office Version
- 2007
- Platform
- Windows
Please can you advise.
The following code copies the selection on the worksheet Fine.
When i see it pasted its in cell A1 & the rows / columns are all squashed up.
Please can you advise how i can paste to the cell A10 & also keep row & column width / height values.
Thanks
The following code copies the selection on the worksheet Fine.
When i see it pasted its in cell A1 & the rows / columns are all squashed up.
Please can you advise how i can paste to the cell A10 & also keep row & column width / height values.
Thanks
Rich (BB code):
Private Sub CommandButton100_Click()
ActiveSheet.Range("F2:N61").Copy
Sheets.Add(After:=Sheets(Sheets.Count)).NAME = Range("G1").Value
ActiveSheet.PASTE
End Sub