简体   繁体   中英

How to Open workbook?

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

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM