Hello,
I am trying to record a macro that copies an entire worksheet to the next worksheet (tab). The original worksheet has 4 macro buttons currently (one of which is the macro to do this copy/paste). When I run the macro below, it copies and pastes to the next tab but pastes as a picture and is very blurry and unreadable. When recording the macro itself, the process works perfectly. Or when doing the simple copy/paste to the next tab it works perfectly. Why won't the recorded macro do the same?
Here is the VBA:
Cells.Select
Selection.Copy
ActiveSheet.Next.Select
Cells.Select
ActiveSheet.Buttons.Add(160.5, 471, 145.5, 18.75).Select
ActiveSheet.Buttons.Add(4.5, 471.75, 145.5, 18.75).Select
ActiveSheet.Buttons.Add(316.5, 471, 135.75, 18.75).Select
ActiveSheet.Buttons.Add(894.75, 302.25, 169.5, 121.5).Select
ActiveSheet.Paste
Range("A1").Select
End Sub
Any help would be greatly appreciated.
Thanks!!
I am trying to record a macro that copies an entire worksheet to the next worksheet (tab). The original worksheet has 4 macro buttons currently (one of which is the macro to do this copy/paste). When I run the macro below, it copies and pastes to the next tab but pastes as a picture and is very blurry and unreadable. When recording the macro itself, the process works perfectly. Or when doing the simple copy/paste to the next tab it works perfectly. Why won't the recorded macro do the same?
Here is the VBA:
Cells.Select
Selection.Copy
ActiveSheet.Next.Select
Cells.Select
ActiveSheet.Buttons.Add(160.5, 471, 145.5, 18.75).Select
ActiveSheet.Buttons.Add(4.5, 471.75, 145.5, 18.75).Select
ActiveSheet.Buttons.Add(316.5, 471, 135.75, 18.75).Select
ActiveSheet.Buttons.Add(894.75, 302.25, 169.5, 121.5).Select
ActiveSheet.Paste
Range("A1").Select
End Sub
Any help would be greatly appreciated.
Thanks!!