将 Access 数据透视表视图导出/复制到 Excel 2003?
有没有办法使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不确定记录数是否重要,除非结果超过 Excel 2003 列和/或行的最大值。
Not sure if number of records matters unless the result exceeds Excel 2003 column and/or row max.
这个怎么样?
<代码>
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
如果您需要的只是数据的可见显示(例如总计),请按 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.