gpt4 book ai didi

excel - Access中的VBA调用函数

转载 作者:行者123 更新时间:2023-12-02 22:00:42 27 4
gpt4 key购买 nike

是否可以在access中使用VBA来执行excel中的宏,使用“调用函数”?我正在尝试使用 Access 中的 VBA 函数来格式化数据。

最佳答案

是的,这是可能的。

这是一个例子:

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

关于excel - Access中的VBA调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19433748/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com