Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I intend to re-set formats using the worksheet open event
My question is about referencing cells within the pivot table with the VBA code For example, if I want to work on the format of the table column headers will there be a reference like: MyPivotTable.rows(1) that I can use? Thanks - any advice will be appreciated |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
not with 2003
try this though .... Dim pt As PivotTable Dim topRow As Range Set pt = ActiveSheet.PivotTables(1) Set topRow = pt.TableRange1.Rows(1) topRow.Select "David" wrote: I intend to re-set formats using the worksheet open event My question is about referencing cells within the pivot table with the VBA code For example, if I want to work on the format of the table column headers will there be a reference like: MyPivotTable.rows(1) that I can use? Thanks - any advice will be appreciated |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Pivot Table Formats | Excel Discussion (Misc queries) | |||
pivot table formats | Excel Discussion (Misc queries) | |||
Dates Formats in Pivot Table Help | Excel Worksheet Functions | |||
Pivot table formats | Excel Discussion (Misc queries) | |||
Pivot Table Formats in Excel 97 | Excel Programming |