从 Access 导出到 Excel
我想在 Access to Excel 中导出一个记录集中的一些数据。
我知道 DoCmd.TransferSpreadsheet 命令,但它仅适用于存储的查询,在我的例子中,它是运行时过滤的记录集。
我尝试了一些代码来完成我想要的事情。我可以导出数据,但无法从记录集中获取列名。
关于命令或如何从记录集中获取这些列名称有什么建议吗?
I want to export some data in one recordset in Access to Excel.
I know the DoCmd.TransferSpreadsheet command but it works only with stored queries, and in my case it's a runtime-filtered recordset.
I've tried some codes to do what I want. I can get the data exported but I cannot get the column name from the recordset.
Any suggestion on the commands or how to get those column names from recordset?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
DAO 记录集有一个可以使用的
name
属性。我的表的输出:
DAO recordsets have a
name
property you can use.Output for my table:
您可以在调用转移电子表格之前更改存储的查询
You can alter a stored query prior to calling transfer spreadsheet