Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 70 多个 excel 文件。我想将Sheet1所有这些文件中的数据复制到一张合并表中。此外,这 70 多个 excel 文件的文件名也在不断变化。
Sheet1
有人可以帮我编写代码来自动执行此活动吗?
您应该使用 Interop 或 OleDB(或其他)在 Excel 文件中提取和插入数据。然后您可以按照以下步骤操作:
循环进入您的文件夹并打开您的 Excel 文件。
对于每个文件,从工作表 Sheet1 中提取数据并将这些数据存储在一个对象中
再次循环并在每个文件中写入您的对象
一些可以帮助您的链接:
VB.NET Excel 互操作示例
数据库
GetFiles 方法