Results 1 to 5 of 5

vba - formatting multiple pivot charts?

Threaded View

kuraitori vba - formatting multiple... 03-11-2010, 08:08 PM
Andy Pope Re: vba - formatting multiple... 03-12-2010, 05:04 AM
kuraitori Re: vba - formatting multiple... 03-14-2010, 01:43 AM
kuraitori Re: vba - formatting multiple... 03-15-2010, 04:59 PM
Andy Pope Re: vba - formatting multiple... 03-16-2010, 04:51 AM
  1. #1
    Forum Contributor
    Join Date
    10-17-2008
    Location
    Vancouver
    MS-Off Ver
    2002 and XP
    Posts
    117

    vba - formatting multiple pivot charts?

    Hello All,

    So found out how to format pivot tables using a for each...in .... loop, but need to do the same for pivot charts, and one bit of code is off.

    Here is the successful code for pivot tables
    Dim Worksheet As Worksheet
    Set Worksheet = ThisWorkbook.Worksheets("Tables")
    For Each PivotTable In Worksheet.PivotTables
        With PivotTable
            .RefreshTable
        End With
    Next PivotTable
    and here is the unsuccessful code for the pivot charts
    Dim Worksheet As Worksheet
    Set Worksheet = ThisWorkbook.Worksheets("Charts")
    For Each ChartObject In Worksheet.ChartObjects
        For Each Chart In ChartObject.Charts
        With Chart
            .ChartType = xlLine
            .Axes(xlCategory).TicklLabels.Font.Size = 10
            .Axes(xlValue).TicklLabels.Font.Size = 10
        End With
        Next Chart
    Next ChartObject
    Code breaks on this line
          For Each Chart In ChartObject.Charts
    With the phrase
    Object doesn't support this property or method
    sigh. so close.


    EDIT: see follow-up question below
    Last edited by kuraitori; 03-15-2010 at 05:00 PM.

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