View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Paul Martin[_2_] Paul Martin[_2_] is offline
external usenet poster
 
Posts: 133
Default Pivot Tables: Alternative to PivotSelect?

I'm still looking for an answer, even if it's "no, you can't do it".


On Oct 8, 12:13*pm, Paul Martin wrote:
Hi guys

In VBA, we're accustomed to referencing ranges rather than selecting
them (which is of course what the macro recorder does). *However, when
referencing ranges within a PivotTable, I don't seem to be able to
avoid PivotSelect and am wondering if there is one.

For example, in the following code, I am trying to format the total
columns of a ColumnField (pt is a declared PivotTable)

* * pt.PivotSelect "CategoryDemand[All;Total]", xlDataAndLabel, True
* * Selection.Interior.ColorIndex = 43
* * Selection.Font.Bold = True

So my question is, can I reference this range and format it, avoiding
PivotSelect?

Thanks in advance

Paul Martin
Melbourne, Australia