Consulting

Results 1 to 3 of 3

Thread: Solved: Pivot table (XLD)

  1. #1
    VBAX Tutor
    Joined
    Dec 2008
    Posts
    244
    Location

    Solved: Pivot table (XLD)

    xld, the code below, it gave me a compile error "Method or data member not found.

    [VBA]
    Dim sh As Worksheet

    For Each sh In ActiveWorkbook.Worksheets

    sh.RefreshAll
    Next sh
    [/VBA]

  2. #2
    Distinguished Lord of VBAX VBAX Grand Master Bob Phillips's Avatar
    Joined
    Apr 2005
    Posts
    25,453
    Location
    Sorry mate, that was clumsy. It is even easier than that

    [vba]

    ActiveWorkbook.RefreshAll
    [/vba]
    ____________________________________________
    Nihil simul inventum est et perfectum

    Abusus non tollit usum

    Last night I dreamed of a small consolation enjoyed only by the blind: Nobody knows the trouble I've not seen!
    James Thurber

  3. #3
    VBAX Tutor
    Joined
    Dec 2008
    Posts
    244
    Location
    perfect, thanks, that worked.

Posting Permissions

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