将许多不同的 csv 文档转换为一个 Excel 文档
我有许多 CSV 格式的文档(大约 100 个不同的 .csv 文件)。我想将它们全部合并到一个 .xls 文档中。我希望每个 CSV 文档代表我的新 xls 文档中的一个工作表。所以我的最终结果应该是一本 xls 工作簿,其中包含 100 个不同的工作表,这些工作表最初是 .csv 文档。
I have many documents in CSV format(about 100 different .csv files). I want to merge all of them into one .xls document. I want each CSV document to represent a worksheet in my new xls document. So my final result should be one xls workbook with 100 different worksheets which were originally .csv documents.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会使用脚本语言,例如 vbs。它与 Excel 和其他 MS 应用程序配合良好,您可以从命令行或双击文件运行它。
您需要为这两个参数添加值,或者
如果您使用命令行,则可以传递 srccsvfile 和 tgtxlsfile 参数,例如:
这是一些示例代码。另存为 nameoffile.vbs:
I'd use a scripting language such as vbs. It plays well with Excel and other MS Applications, and you can run it from either command line or double clicking on the file.
You need to add values for those two arguments or
If you do command line you can pass the srccsvfile and tgtxlsfile parameters like:
Here is some sample code. Save as nameoffile.vbs: