Excel宏粘贴只是值

时间:2017-12-21 12:44:41

标签: excel excel-vba vba

我写了宏从一张纸到另一张的复印日期。

Sheet1.Cells(i, 3).Copy
Sheet1.Paste Destination:=Sheet2.Cells(erow, 1)

但是在表1中是公式,我想只复制值。如何更改此代码以解决我的需求?

1 个答案:

答案 0 :(得分:2)

使用:

Sheet1.Cells(i, 3).Copy
Sheet2.Cells(erow, 1).PasteSpecial xlPasteValues

或者:

Sheet2.Cells(erow, 1).Value = Sheet1.Cells(i, 3).Value