在 vb.net 中循环遍历 Excel 工作簿
我正在使用一个包含 xls
文件的文件夹,这些文件的格式均相同(通过在定价应用程序中输入数字自动生成)。我需要提取每个文件中同名工作表上单元格 D54
中的数据。似乎无法让任何东西起作用来使其循环。
有什么想法可以做到这一点吗?
I am working with a folder of xls
files that are all in identical format (automatically generated by entering numbers into a pricing app). I need to pull the data that is in cell D54
on the worksheet of the same name in every file. Can't seem to get anything to work to make it loop.
Any ideas how this can be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您可以生成 XLSX 格式的文件,那么这就是我要做的。
http://epplus.codeplex.com/
这是一个令人惊叹的组件库,用于处理 Excel XLSX 工作表。
示例...
否则,选项是从 Office 引用 Excel Com+ 库来打开一个 XLS 工作表,其代码应与下面类似。
If you can have the files generated in XLSX format then this is what I would do.
http://epplus.codeplex.com/
This is an amazing component library for dealing with Excel XLSX sheets.
Example...
Otherwise the option is to reference the Excel Com+ Library from office to open an XLS sheet with what should be similar code as below.