我必须编辑一个表单,其中包含两个表格的数据。 一个是主人和另一个用户。首先将数据保存在用户表中 并且使用该id,剩余的数据将保存在主表中。 下面是我的编辑代码。我该怎么做才能获取数据并对其进行编辑。
{{1}}
有人可以帮帮忙..
答案 0 :(得分:1)
通过以下方式更新您的代码:
Dim wb As Workbook, wbk As Workbook, wbk1 As Workbook
Set wb = Workbooks.Open(folderPath & "\Templates\invoice.xlsx")
Set wbk = Workbooks("invoice.xlsx")
'repalce your soruce workbook name with correct extension xlsm
Set wbk1 = Workbooks("sorce.xlsx")
'please change the sheet index with name as you wish
wbk.Sheets(1).Cells.Range("B11").Value = wbk1.Sheets(1).Cells.Range("Member").Value