如果系列名称=“#N / A”,如何删除图表中的系列

时间:2016-09-27 13:46:11

标签: excel vba excel-vba charts legend

我有一个动态图表,有时可能包含excel vba中的空数据系列。如果有空数据系列,则只有图例条目显示为“#N / A”。我正在尝试构建一个代码,如果系列名称等于“#N / A”,它将完全删除数据系列。下面是我构建的代码的副本,但是在“for each ...”行中我得到了无效的参数错误。

Dim n As Variant
ActiveChart.PlotArea.Select
For Each n In ActiveChart.SeriesCollection(n)
    If ActiveChart.SeriesCollection(n).Name.Text = "#N/A" Then
        ActiveChart.SeriesCollection(n).Delete
    End If
Next n

1 个答案:

答案 0 :(得分:0)

试试这个。

export const routes: Routes = [
  { path: '', component: App },
  { path: 'other/:id', component: Other }
];