+ Reply to Thread
Results 1 to 9 of 9

Pivot Table VBA code: Out of Range Error

  1. #1
    Registered User
    Join Date
    02-16-2011
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    5

    Pivot Table VBA code: Out of Range Error

    Hi Guys,

    I need to automate pivot table creation through VBA, and I have hit a bit of snag that I am hoping some of you may help me out with.
    The following code is used:
    '
    ' Pivot_Table Macro
    '

    '
    Worksheets("Summary Sheet").Activate
    Worksheets("Summary Sheet").Select
    Range("A5").Select
    ActiveWorksheets.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
    "Sheet1!R5C1:R34665C4", Version:=xlPivotTableVersion14).CreatePivotTable _
    TableDestination:="Summary Sheet!R5C1", TableName:="PivotTable1", _
    DefaultVersion:=xlPivotTableVersion14
    Sheets("Summary Sheet").Select
    Cells(5, 1).Select
    With ActiveSheet.PivotTables("PivotTable1").PivotFields("DDDD")
    .Orientation = xlRowField
    .Position = 1
    End With
    With ActiveSheet.PivotTables("PivotTable1").PivotFields("DDDDD1")
    .Orientation = xlRowField
    .Position = 2
    End With
    With ActiveSheet.PivotTables("PivotTable1").PivotFields("DDDD111")
    .Orientation = xlRowField
    .Position = 3
    End With
    ActiveSheet.PivotTables("PivotTable1").AddDataField ActiveSheet.PivotTables( _
    "PivotTable1").PivotFields("Dialled_Number_Name"), _
    "Count of Dialled_Number_Name", xlCount
    With ActiveSheet.PivotTables("PivotTable1").PivotFields("DDDDD111")
    .Orientation = xlColumnField
    .Position = 1
    End With
    Now I am having the following error at the following line: Runtime error 1004 Select Method of Range Class failed.

    And it occurs at the following:

    Range("A5").Select
    Can you guys figure out what is wrong with the code, the macro was recorded while I made the pivot table.
    Last edited by AmmonRA; 02-17-2011 at 08:02 AM.

  2. #2
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Pivot Table VBA code: Out of Range Error

    Are you sure that's the error line and not the next one.

    Please Login or Register  to view this content.
    Activeworksheets is not a valid object.
    The enum xlPivotTableVersion14 would suggest you are using xl2010 not xl2007 as stated in your profile.

    Did you protect the sheet whilst recording?
    Cheers
    Andy
    www.andypope.info

  3. #3
    Registered User
    Join Date
    02-16-2011
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    5

    Re: Pivot Table VBA code: Out of Range Error

    Hi Andy,

    I am at work, that is why I have Excel 2010, sorry I should have stated that, that it differs from my profile since at home I use Excel 2007.

    The error shows up there, but if I remove:
    Range("A5").Select
    I get the following error: Runtime Error 438, Object does not support this property or method.

    For the line:

    ActiveSheet.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
    "Sheet1!R5C1:R34665C4", Version:=xlPivotTableVersion14).CreatePivotTable _
    TableDestination:="Summary Sheet!R5C1", TableName:="PivotTable1", _
    DefaultVersion:=xlPivotTableVersion14
    I really need to get this to work, as it would really help out with a procedure that we have here.

    No I did not protect it while recording, no protection needed here.

    If you could help, I would really appreciate it.

  4. #4
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Pivot Table VBA code: Out of Range Error

    The line of code itself is correct, although you probably do not need all those select and activates.

    Can you post example workbook, desensitize data as required, that demonstratess the error.

  5. #5
    Registered User
    Join Date
    02-16-2011
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    5

    Re: Pivot Table VBA code: Out of Range Error

    Hi Andy,

    Find attached the workbook that resembles the one I need to work with.

    I had to remove the code as well as the activex object button that is going to act as the button to create the pivot table.

    I also had to cut down on the data present as the size was an issue.

    Hope this helps.

    Cheers!
    Attached Files Attached Files

  6. #6
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Pivot Table VBA code: Out of Range Error

    I assume the code is in the activeX button click event.

    In which case the reference to Range and Cells select is relative to the Data sheet and not the Summary Sheet.

    Much easier if you put the recorded code in a standard code module and then call that from the Click event

    Sheet object
    Please Login or Register  to view this content.
    Standard code module
    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    02-16-2011
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    5

    Re: Pivot Table VBA code: Out of Range Error

    Hi Andy,

    The code works marvels on the test workbook I sent you, however, when I try applying it to the original workbook I get the following error:

    Runtime error: 5, Invalid Procedure Call or Argument for the following line again:

    ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
    "Phone Bill Sort!R5C1:R34665C4", Version:=xlPivotTableVersion14). _
    CreatePivotTable TableDestination:="Summary Sheet!R5C1", TableName:= _
    "PivotTable1", DefaultVersion:=xlPivotTableVersion14

  8. #8
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Pivot Table VBA code: Out of Range Error

    does it make any difference if you enclose the sheet names, that contain spaces, within single quotes? As I did in the code I posted.

  9. #9
    Registered User
    Join Date
    02-16-2011
    Location
    London, England
    MS-Off Ver
    Excel 2007
    Posts
    5

    Re: Pivot Table VBA code: Out of Range Error

    Hi,

    Andy, thank you so much for your help, putting them in single quotes solved my issue.

    I thank you immensly for your assistance in this matter.

    I will put this thread as solved.

+ Reply to Thread

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