Results 1 to 1 of 1

Making all pivot items invisible before doing Do Loop

Threaded View

  1. #1
    Registered User
    Join Date
    04-28-2011
    Location
    Auckland
    MS-Off Ver
    Excel 2003
    Posts
    24

    Making all pivot items invisible before doing Do Loop

    Hi there

    Appreciate any help as I am building on from this post here
    I have the below bit of code that I want to go through my pivot chart and make the last 7 days of data visible.

    Here I am assuming that the date 07/09/2011 is the only date visible in the pivot chart. So when I run this macro the 12/09/2011 to the 18/09/2011 will also be visible in the pivot chart.

    So when the below macro is finished I will end up with 07/09/2011, and 12/09/2011 to the 18/09/2011 all visible.

    But what I want to do is make all dates invisible first and then go through my Do Loop making the the 12/09/2011 to the 18/09/2011 all visible.

    Can anyone suggest hot the best way is of doing this?

    Sub ShowAllItems7Days_test()
    Application.ScreenUpdating = False
    Dim ws As Worksheet
    Dim objPT As PivotTable
    Dim objPTField As PivotField
    Dim objPTItem As PivotItem
    
    Dim LastDate As Date
    Dim LastDate7 As Date
    
    LastDate = Sheets("Sheet1").Cells(Rows.Count, "A").End(xlUp) + 1
    LastDate7 = LastDate - 7
    
    MsgBox "LastDate is:" & LastDate & vbCrLf & "LastDate7 is:" & LastDate7 & vbCrLf
    
    For Each ws In Worksheets
    ws.Visible = xlSheetVisible
        For Each objPT In ws.PivotTables
     MsgBox "Pivot table name: " & objPT.Name & vbCrLf & "Sheet name: " & ws.Name & vbCrLf & "test"
                                        
              
                  Do Until LastDate = LastDate7
                  MsgBox "inside Do:" & LastDate7 & vbCrLf
                    With objPT.PivotFields("date")
                    .PivotItems(LastDate7).Visible = True
                                
                    End With
                   LastDate7 = LastDate7 + 1
                  Loop
        
        MsgBox "LastDate is:" & LastDate & vbCrLf & "LastDate7 is:" & LastDate7 & vbCrLf
              
                
                
                
        Application.ScreenUpdating = True
     
        Next objPT
    Next ws
       
     
    End Sub
    Thanks
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1