本文介绍了复印值,无配方。 EXCEL VBA的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在编写代码,以将工作表从一个工作簿(W1)复制到另一个工作簿(W2)。
我知道该怎么做,但是问题是W2中复制的工作表仍然具有W1中的公式和引用,我不希望我只想要这些值。
I am writting a code to copy a sheet from one workbook(W1) to another workbook(W2).I know how to do it, but the problem is the copied sheet in W2 still has the formulas and references from W1, and I don't want that I just want the values.
这是我复制工作表的代码:
This is my code to copy the sheet:
Set W1 = Workbooks("REPORT1.xlsx")
Set W2 = Workbooks("REPORT2.xlsx")
W1.Sheets("TEST").Copy After:=W2.Sheets(wb.Sheets.Count)
任何想法。
谢谢
Any thoughts.Thanks
推荐答案
Set W1 = Workbooks("REPORT1.xlsx")
Set W2 = Workbooks("REPORT2.xlsx")
W1.Sheets("TEST").Copy After:=W2.Sheets(wb.Sheets.Count)
ActiveSheet.UsedRange.Value = ActiveSheet.UsedRange.Value
这篇关于复印值,无配方。 EXCEL VBA的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!