Results 1 to 5 of 5

Pivot Table & Chart with Excel VBA - issue on mAcro

Threaded View

  1. #1
    Registered User
    Join Date
    12-05-2013
    Location
    Newyork
    MS-Off Ver
    Excel 2013
    Posts
    6

    Pivot Table & Chart with Excel VBA - issue on mAcro

    Hi,

    I have the following requirement where I need to create the pivot table.

    The issue is when I press execute button the macro completed successfully, but the Rows in the table do not have any values. But if I execute step by step in edit mode, I'm getting the required output. I don't know what i'm missing why I face this issue

    The input and the code in the attachment with it

    Private Sub Execute1_Click()
    
    Dim WST As Worksheet, WSD As Worksheet
    Dim PTCache As PivotCache
    Dim pt As PivotTable
    Dim objChart As ChartObject
    Dim PRange As Range, rngChart As Range
    Dim FinalRow As Long, Finalcol As Long
       
    Set WSD = ThisWorkbook.Worksheets("sheet1")
    Set WST = ThisWorkbook.Worksheets("sheet2")
    
    ' Delete any previous Pivot able
    For Each pt In WST.PivotTables
        pt.TableRange2.Clear
    Next pt
    
    For Each chtObj In WST.ChartObjects
        chtObj.Delete
    Next
    'Define Input area and set up pivot Cache
    
    FinalRow = WSD.Cells(Rows.Count, "B").End(xlUp).Row
    Finalcol = WSD.Cells(1, Columns.Count).End(xlToLeft).Column
    
    Set PRange = WSD.Cells(1, 1).Resize(FinalRow, Finalcol)
    
    Application.Goto ThisWorkbook.Worksheets("sheet1").Range("A1"), True
    
    Set PTCache = ThisWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:=PRange.Address)
    Set pt = PTCache.CreatePivotTable(TableDestination:=WST.Range("A2"), TableName:="Table1")
    
    'Turn off Update while Building the table
    pt.ManualUpdate = True
    
    ' Set up the PageFields
    With pt.PivotFields("DM")
        .Orientation = xlPageField
        .Position = 1
    End With
    
    With pt.PivotFields("PM")
        .Orientation = xlPageField
        .Position = 1
    End With
    
    With pt.PivotFields("LOB")
        .Orientation = xlRowField
        .Position = 1
    End With
            
    With pt.PivotFields("Bus Score")
        .Orientation = xlDataField
        .Function = xlAverage
        .NumberFormat = "0.00"
        .Position = 1
        .Name = "Avg of Bus"
    End With
    
    With pt.PivotFields("Sys Score")
        .Orientation = xlDataField
        .Function = xlAverage
        .NumberFormat = "0.00"
        .Position = 2
        .Name = "Avg of Sys"
    End With
    
    With pt.PivotFields("Proc Score")
        .Orientation = xlDataField
        .Function = xlAverage
        .NumberFormat = "0.00"
        .Position = 3
        .Name = "Avg of Proc"
    End With
    
    End Sub


    Thanks
    Guna
    Attached Files Attached Files
    Last edited by bsguna; 07-14-2016 at 05:36 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] calculating specific data from a pivot table to create a pivot chart in Excel 2016
    By cinstanl in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 06-15-2016, 12:14 PM
  2. Excel for Mac Pivot Table Formatting Issue
    By semantics in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 03-28-2013, 02:34 PM
  3. Basic Question - Pivot Table Div/0 issue - Excel 2010
    By Christianb in forum Excel General
    Replies: 3
    Last Post: 04-30-2012, 01:42 PM
  4. Macro to create pivot table/pivot chart
    By Karina in forum Excel General
    Replies: 2
    Last Post: 10-27-2011, 10:33 PM
  5. Excel 2007 Pivot Chart Issue
    By ewanioc in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 06-22-2011, 09:36 AM
  6. [SOLVED] Pivot Table issue in Excel 2007
    By ExcelInstructor in forum Excel General
    Replies: 1
    Last Post: 06-29-2006, 03:50 PM
  7. Pivot Table Memory Issue - Excel crashes
    By rmsterling in forum Excel General
    Replies: 0
    Last Post: 11-11-2005, 06:10 AM

Tags for this Thread

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