View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
WayneR WayneR is offline
external usenet poster
 
Posts: 11
Default Pagefield - select "(All)"

Hi

I have 2 differnt fields for my page - I want to set one to a user enter
value and the other to "ALL" items. I have tried the following

pvt.PivotCache.Refresh
pvt.PivotFields(str_selection_value1).CurrentPage = str_selection
pvt.PivotFields(str_selection_value2).CurrentPage = "(All)"

The pivot table seems to be suing a value of "(All)" , selecting nothing
since there is no "(All)" value, instead of selecting all items. Is there an
XLPageFieldsAll constant, I can use.

Also, I am using XL 2007 - the sheet is in compatibility mode, some users
ahve 2007 some 2003.

Thanks
Wayne


pvt.PageFields(1).CurrentPage = "(All)"

--
WayneR