![]() |
Pivot Table Relative References
Looking for help with VBA code.
I would like to store in a variable the amount of child categories that are part of a given row or column. Are pivot table size details referenced in any functions? My user requires a formula inserted to the bottom of the pivot which will summarize the above data. This requires knowing the cell locations to put into these formulas. Thank you, JR |
Pivot Table Relative References
If the ActiveCell is in the pivot table, the code below can get the
addresses of the pivot table row and column the cell is in. Option Explicit Sub GetPivotTableInfo() Dim rngDataRange As Range Dim rngRow As Range Dim rngColumn As Range Set rngDataRange = Application.ActiveCell.PivotField.DataRange Set rngRow = Intersect(Rows(ActiveCell.Row), rngDataRange) Set rngColumn = Intersect(Columns(ActiveCell.Column), rngDataRange) MsgBox "Row address: " & rngRow.Address MsgBox "Column address: " & rngColumn.Address End Sub Mark Jimmy wrote: Looking for help with VBA code. I would like to store in a variable the amount of child categories that are part of a given row or column. Are pivot table size details referenced in any functions? My user requires a formula inserted to the bottom of the pivot which will summarize the above data. This requires knowing the cell locations to put into these formulas. Thank you, JR |
Pivot Table Relative References
Thanks.
It works! Mark Driscol wrote: If the ActiveCell is in the pivot table, the code below can get the addresses of the pivot table row and column the cell is in. Option Explicit Sub GetPivotTableInfo() Dim rngDataRange As Range Dim rngRow As Range Dim rngColumn As Range Set rngDataRange = Application.ActiveCell.PivotField.DataRange Set rngRow = Intersect(Rows(ActiveCell.Row), rngDataRange) Set rngColumn = Intersect(Columns(ActiveCell.Column), rngDataRange) MsgBox "Row address: " & rngRow.Address MsgBox "Column address: " & rngColumn.Address End Sub Mark Jimmy wrote: Looking for help with VBA code. I would like to store in a variable the amount of child categories that are part of a given row or column. Are pivot table size details referenced in any functions? My user requires a formula inserted to the bottom of the pivot which will summarize the above data. This requires knowing the cell locations to put into these formulas. Thank you, JR |
All times are GMT +1. The time now is 12:00 AM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com