将 csv 文件分成单独的文件夹
我有一个 Access 数据库,它标记了相当多的记录以导出到 CSV 文件。客户需要 CSV 文件以电子方式上传到其计费系统。但是,每个记录都必须有自己的 CSV 文件夹。每个文件夹的名称必须包含票号和记录日期。
我想将所有标记为导出的记录批量导出到 CSV。然后,以编程方式浏览记录并将每张票证移动到单独的 CSV 文件...并具有唯一的名称。
有什么想法吗?我很困惑,几个月来一直在研究这个/在互联网上搜索。
I have an access database that marks quite a few records for export to a CSV file. The customer requires a CSV file for electronic upload to their billing system. However, EACH, record must have it's own CSV folder. Each folder must be names with the ticket number and date of the record.
I would like to export all records marked for export to the CSV in a batch. Then, programmatically move through the records and move each ticket to the separate CSV file...with the unique name.
Any ideas? I'm stumped and have been working on this/searching the internet for months.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您在 Access 中完成这一切,则无需分两步完成,您可以循环中的每一行创建一个文件。
If you are doing it all in Access, you don't need to do it in two steps, you can create a file from each row in a loop.