1
VBAにはまったく新しいものがあります。私はタブに約8つのチャートを持つワークブックを持って、たくさんのタブがあります。各グラフは同じ値でフィルタリングする必要があり、マクロを動作させるのに苦労しています。ここに私が持っているものは次のとおりです:VBA複数のチャートフィルタ
Sub ChartFilter()
'
'
'
'
For Each Chart In ActiveWorkbook.Charts
ActiveChart.Legend.Select
With ActiveChart.PivotLayout.PivotTable.PivotFields("Category1")
.PivotItems("Value1").Visible = True
.PivotItems("Value2").Visible = True
.PivotItems("Value3").Visible = True
.PivotItems("Value4").Visible = True
.PivotItems("Value5").Visible = True
.PivotItems("Value6").Visible = True
.PivotItems("Value7").Visible = True
End With
Next Chart
End Sub
どこが間違っているのか分かりますか?
ありがとうございます!
は、pivotchartsのチャートですか? –