Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
用于将单元格从一个打开的工作簿复制到另一个打开的工作簿的宏......如果我不知道他们的文件路径的 PS:代码将写入源工作簿
你需要这样的东西(ThisWorkbook是对你有 VBA 代码的工作簿的引用):
ThisWorkbook
ThisWorkbook.Worksheets("Sheet1").Range("A1:B2").Copy Workbooks("Book1.xslx").Worksheets("Sheet1").Range("A1").Insert Shift:=xlDown
假设两个工作簿都已打开。您不需要知道完整路径 - 只有文件名很重要。