Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this macro that used to work nicely for a while.
I replaced seemingly irrelevant function Insert Picture for Add Shape Picture in different Sub and all sudden. It stopped working with error 1004 on line 3.

Can you advise what I have wrong there, please?

Public Sub CopyData()
  ThisWorkbook.Worksheets(2).Range("C:Z").Clear

  Workbooks.Open Filename:=ThisWorkbook.Path & "Book1.xlsx"

  Workbooks("Book1.xlsx").Worksheets(1).Range("A1:Z200").Copy

  ThisWorkbook.Worksheets(2).Range("C1").PasteSpecial

  Application.CutCopyMode = False

  Workbooks("Book1.xlsx").Close SaveChanges:=False

  ActiveWorkbook.Sheets(1).Activate
End Sub

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
480 views
Welcome To Ask or Share your Answers For Others

1 Answer

The targeted sheet for Paste function was protected (locked). It works now.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...