Ark68
Well-known Member
- Joined
- Mar 23, 2004
- Messages
- 4,533
- Office Version
-
- 365
- 2016
- Platform
-
- Windows
I am trying to use this code:
To copy the contents of Worksheets("MasterWKSH") to Worksheet("CUE"). The copy is made, but the paste fails.
Code:
With Worksheets("MasterWKSH")
.Cells.Copy
With Worksheets("CUE")
.Cells.Paste
End With
End With
To copy the contents of Worksheets("MasterWKSH") to Worksheet("CUE"). The copy is made, but the paste fails.