Busymanjohn
Member
Hi, I have a simple copy / paste macro recorded ( as below ), but I keep getting a runtime 1004 error and when I look for an explanation into the error I see that this error is common with password protected files .... i've removed the password and i still get the error ,, i'm not very good with vba so any suggestions would be appreciated.
Sub Copyone()
'
' Copyone Macro
'
'
ActiveWindow.LargeScroll Down:=1
Range("B2:AF34").Select
Selection.Copy
Application.CutCopyMode = False
Selection.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
Sheets("Ball Scores").Select
Range("B3").Select
ActiveSheet.Paste
ActiveSheet.Shapes.Range(Array("Picture 3")).Select
Range("A2").Select
End Sub
Sub Copyone()
'
' Copyone Macro
'
'
ActiveWindow.LargeScroll Down:=1
Range("B2:AF34").Select
Selection.Copy
Application.CutCopyMode = False
Selection.CopyPicture Appearance:=xlPrinter, Format:=xlPicture
Sheets("Ball Scores").Select
Range("B3").Select
ActiveSheet.Paste
ActiveSheet.Shapes.Range(Array("Picture 3")).Select
Range("A2").Select
End Sub