将 Access 数据透视表视图导出/复制到 Excel 2003?

发布于 2024-09-15 15:51:58 字数 73 浏览 5 评论 0原文

有没有办法使用 VBA 将 Access 2003 数据透视表视图(用于透视 206,000 条记录)复制到 Excel 2003?

Is there a way to copy an Access 2003 pivot table view (used to pivot 206,000 records) to Excel 2003 using VBA?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夜访吸血鬼 2024-09-22 15:51:58

不确定记录数是否重要,除非结果超过 Excel 2003 列和/或行的最大值。

DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel11, "qryPivot_Table_Name", "C:\Users\user\Documents\PivotTable.xlsx", True

Not sure if number of records matters unless the result exceeds Excel 2003 column and/or row max.

DoCmd.TransferSpreadsheet acExport, acSpreadsheetTypeExcel11, "qryPivot_Table_Name", "C:\Users\user\Documents\PivotTable.xlsx", True
怀中猫帐中妖 2024-09-22 15:51:58

这个怎么样?

<代码>
DoCmd.OpenQuery“qryPivot_Table_Name”,acViewPivotTable
DoCmd.RunCommand AcCommand.acCmdPivotTableExportToExcel

之后,您只需要通过 Excel.Application 对象获取对新工作簿的引用

How about this?


DoCmd.OpenQuery "qryPivot_Table_Name", acViewPivotTable
DoCmd.RunCommand AcCommand.acCmdPivotTableExportToExcel

after that you just need to get a reference to the new workboook through Excel.Application object

极致的悲 2024-09-22 15:51:58

如果您需要的只是数据的可见显示(例如总计),请按 Ctrl+C 选择要显示的选定范围,然后按 Shift+编辑+粘贴图片链接。当数据更新时,图像将会改变。我认为您可以将其改编为宏,并相当容易地生成您想要分发的内容。

If all you need is a visible display of the data, such as the totals, Ctrl+C the selected range you want to show, then Shift+Edit+Paste Picture Link. When data is updated it will change the image. I would think you can adapt this to a macro, and generate what you want to distribute, fairly easily.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文