Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I would like to display dates in a pivottable that match with dates on a list. I am one step away, but not sure where I made a mistake 'count number of dates in a pivot talbe intCountRows1 = ActiveSheet.PivotTables("PivotTable3").PivotFields ("Date"). PivotItems.Count 'count number of dates in a list intCountRows2 = Application.WorksheetFunction.CountA(Sheet1.Range( "G:G")) 'tick all dates to be displayed For i = 1 To intCountRows1 With ActiveSheet.PivotTables("PivotTable3").PivotFields ("Date") .PivotItems(i).Visible = True End With Next 'compare a list against the dates in a pivottable and display only those that match. a = 2 Do While a <= intCountRows2 For i = 1 To intCountRows1 strField = Sheet1.Cells(a, 7).Value With ActiveSheet.PivotTables("PivotTable3").PivotFields ("Date") If .PivotItems(i).Value = strField Then .PivotItems(i).Visible = True a = a + 1 Else .PivotItems(i).Visible = False End If End With Next Loop End Sub Thanks very much for your help in advance Best regards Slav -- Message posted via OfficeKB.com http://www.officekb.com/Uwe/Forums.a...mming/200605/1 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
2003 PIvotTable Calculated Fields | Excel Discussion (Misc queries) | |||
Pivottable Sum of fields. | Excel Discussion (Misc queries) | |||
pivottable calculated fields | Excel Discussion (Misc queries) | |||
PivotTable-Fields Page | Excel Programming | |||
pivottable page fields | Excel Programming |