无需打开 Excel 文件即可赋值
导入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想“分配”什么类型的值?某种元数据?根据我的经验,上面的代码是打开文件的正确方法;从那里,您可以开始操作该文件。
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.