我是excel和宏的新手,但每当我过滤数据透视表以查看20个类别中有3个的信息时我会收到
“未知属性ID”
消息。正在从工作簿中的另一个选项卡中提取数据。调试器中突出显示的行是Active Sheet行。你能帮我解决这个问题吗?
SELECT COUNT(*)
FROM TABLENAME
WHERE TIMESTAMP BETWEEN '2017-09-19 13:00:00' and '2017-09-19 13:59:59';
答案 0 :(得分:0)
以下是如何刷新数据透视表
Sub RefreshAllPivotTables() 'Refresh Pivot table
Worksheets("Sheet1").Activate
For Each cache In ThisWorkbook.PivotCaches
cache.Refresh 'Refresh Pivot table
Next
End Sub