View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Jeff S[_2_] Jeff S[_2_] is offline
external usenet poster
 
Posts: 5
Default Pivot Table - filter by a cell reference

Hmm. Also, try using a string value instead of a range.

Dim strTitleSelection As String
strTitleSelection = Worksheets("Control Sheet").Range("JnlCode").Value
ActiveSheet.PivotTables("PivotTable3").PivotFields ("Title #2").CurrentPage =
strTitleSelection

Hope that helps,
-jeff


"Matthew Balch" wrote:

Hi,

I am having trouble with some VB where I want to filter a pivot table based
upo na cell value.

Here's the problem bit ofVB I have:-


Dim TitleSelection As Range
Set TitleSelection = Worksheets("Control Sheet").Range("JnlCode")

ActiveSheet.PivotTables("PivotTable3").PivotFields ("Title
#2").CurrentPage =
TitleSelection

I.e. where I have = TitleSelection doesn't work.

Thanks in advance
Matt