Excel宏跳过数据透视表中的步骤

时间:2016-10-05 20:05:28

标签: excel macros

我想创建一个简单的宏来制作数据透视表,然后从中创建图形。当我在数据透视表中的轴字段(行)中插入'Date Occurance'时,宏在其代码中有步骤,但在运行宏时不运行它。创建的图表没有“Date Occurance”,当我检查数据透视表时,必填字段中没有“Date Occurance”。

With ActiveSheet.PivotTables("PivotTable2").PivotFields("Date Occurred")
    .Orientation = xlRowField
    .Position = 1
End With
With ActiveSheet.PivotTables("PivotTable2").PivotFields("Specific Info 2")
    .Orientation = xlRowField
    .Position = 2
End With

With ActiveSheet.PivotTables("PivotTable2").PivotFields("Application Name")
    .Orientation = xlColumnField
    .Position = 1
End With

谢谢

1 个答案:

答案 0 :(得分:0)

可能是您的宏代码发生了"发生日期"并且您的字段实际上标题为" Date Occurrence"。