将参数从 Outlook 传递到 Excel
如何将参数传递给从 Outlook 调用的 Excel VBA 代码?
How to pass arguments to Excel VBA code called from Outlook?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将参数传递给从 Outlook 调用的 Excel VBA 代码?
How to pass arguments to Excel VBA code called from Outlook?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
通过使用
Application.Run
:By using
Application.Run
:您可以通过
Application.Run
方法执行宏。此方法将宏名称作为第一个参数,然后将最多 30 个参数作为参数传递给宏。在 Outlook 中,使用以下代码:
在 Excel 中,将以下方法添加到电子表格文档的
ThisWorkbook
元素:You can execute a macro via the
Application.Run
method. This method takes the macro name as the first argument and then up to 30 parameters that are passed as arguments to the macro.In Outlook use the following code:
In Excel, add the following method to the
ThisWorkbook
element of a spreadsheet document: