是否可以使用 VBA 在访问中使用“调用函数”在 excel 中执行宏?我正在尝试通过使用 Access 中的 VBA 函数来格式化数据。
问问题
718 次
1 回答
1
对的,这是可能的。
这是一个例子:
Sub RunExcelMacro()
Dim xl As Object
'Step 1: Start Excel, then open the target workbook.
Set xl = CreateObject("Excel.Application")
xl.Workbooks.Open ("C:\Book1.xlsm")
'Step 2: Make Excel visible
xl.Visible = True
'Step 3: Run the target macro
xl.Run "MyMacro"
'Step 4: Close and save the workbook, then quit the Excel application
xl.ActiveWorkbook.Close (True)
xl.Quit
'Step 5: Memory Clean up.
Set xl = Nothing
End Sub
于 2013-10-17T18:15:43.657 回答