目前我使用的代码不会仅复制和粘贴值。我需要在代码中更改一些内容,以便可以应用此功能。
'Copy & Paste this data in to our new worksheet:
wbURL.Sheets(3).Cells.Cut Destination:=wbMe.Sheets("NPMIG Data Sheet").Range("A1")
'Close the downloaded version which we no longer need
答案 0 :(得分:2)
wburl.Sheets(3).cells.Copy
worksheets("NPMIG Data Sheet").Range("A1").PasteSpecial.Values
我的想法。您可能需要稍微收紧工作表引用。