Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用与 OLAP 多维数据集的连接在 Excel 2010 中创建数据透视表。
我试图弄清楚如何将多维数据集的路径和文件名以及上次刷新的日期/时间显示并打印到 Excel 表中。
基本上,显示在工作簿连接(在数据选项卡下)中的相同信息将打印在数据透视表所在的工作表中。
有没有办法做到这一点?
谢谢!
这会将所有连接名称打印到调试窗口。
Dim conn As WorkbookConnection For Each conn In ActiveWorkbook.Connections Debug.Print conn.Name Next conn
同样,您可以在工作表上显示信息。