balaji3081
Member
Hi Guys,
Here is a macro to for getting to the classic view on pivot via a shortcut(Ctrl+r). however the macro has made the pivot very specific to Pivot table 8 , I want it to work for any pivot.
Sub Classic_Pivot()
'
' Classic_Pivot Macro
' to convert to classic view
'
' Keyboard Shortcut: Ctrl+r
'
With ActiveSheet.PivotTables("PivotTable8")
.InGridDropZones = True
.RowAxisLayout xlTabularRow
End With
End Sub
Here is a macro to for getting to the classic view on pivot via a shortcut(Ctrl+r). however the macro has made the pivot very specific to Pivot table 8 , I want it to work for any pivot.
Sub Classic_Pivot()
'
' Classic_Pivot Macro
' to convert to classic view
'
' Keyboard Shortcut: Ctrl+r
'
With ActiveSheet.PivotTables("PivotTable8")
.InGridDropZones = True
.RowAxisLayout xlTabularRow
End With
End Sub