如何仅使用值复制并粘贴到新工作表(VBA)中

时间:2015-06-01 17:15:42

标签: excel-vba vba excel

目前我使用的代码不会仅复制和粘贴值。我需要在代码中更改一些内容,以便可以应用此功能。

'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

1 个答案:

答案 0 :(得分:2)

wburl.Sheets(3).cells.Copy
worksheets("NPMIG Data Sheet").Range("A1").PasteSpecial.Values

我的想法。您可能需要稍微收紧工作表引用。