无需打开 Excel 文件即可赋值

发布于 2024-10-14 04:02:28 字数 369 浏览 3 评论 0原文

导入 Microsoft.Office.Core 导入 Microsoft.Office.Interop 导入 Microsoft.Office.Interop.Excel

我有以下代码:

Dim oApp As New Excel.Application()
Dim wb As Excel.Workbook

wb = oApp.Workbooks.Open("D:\NoriaMail\23120011\LPO Summary per Month_View 3 - AllMonths.xlsx")

任何人都可以告诉我如何在不打开文件的情况下为 wb 赋值 (我想要另一个函数在不打开文件的情况下给出 wb 值)
谢谢你的帮助

Imports Microsoft.Office.Core
Imports Microsoft.Office.Interop
Imports Microsoft.Office.Interop.Excel

I have this code:

Dim oApp As New Excel.Application()
Dim wb As Excel.Workbook

wb = oApp.Workbooks.Open("D:\NoriaMail\23120011\LPO Summary per Month_View 3 - AllMonths.xlsx")

can anybody tell me how can I assign value to wb witout open the file
(I want another function to give wb value without open the file)
thank's for help

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小兔几 2024-10-21 04:02:28

您想“分配”什么类型的值?某种元数据?根据我的经验,上面的代码是打开文件的正确方法;从那里,您可以开始操作该文件。

What type of value do you want to "assign"? Some sort of metadata? In my experience, your code above is the correct way to open the file; from there, you can begin manipulating the file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文