-1
我只需要一個宏,它隱藏了整個數據透視表。 數據透視表名稱= PivotTable4用VBA隱藏整個數據透視表Makro
由於提前
格爾茨
With ActiveSheet.PivotTables("PivotTable4").PivotFields("Average of Server Respond Time")
For x = 3 To .PivotItems.Count
If Left(.PivotItems(x).Value, 1) = "1" Then
.PivotItems(x).Visible = False
End If
Next x
End With
我想這一點,陸續
你有什麼你已經試過了? – 2015-02-05 12:59:03
With ActiveSheet.PivotTables(「PivotTable4」)。PivotFields(「Average of Server Respond Time」) For x = 3 To .PivotItems.Count If Left(.PivotItems(x).Value,1)=「1」Then .PivotItems(x).Visible = False End If Next x End With – Furkan 2015-02-05 13:03:52
那麼,代碼有什麼問題?結果是什麼? – EngJon 2015-02-05 13:20:32