+ Reply to Thread
Results 1 to 2 of 2

Create Range from highlighted cells for Pivot Table Source Data

Hybrid View

athyeh Create Range from highlighted... 09-08-2015, 01:52 PM
Bernie Deitrick Re: Create Range from... 09-08-2015, 03:34 PM
  1. #1
    Registered User
    Join Date
    06-12-2013
    Location
    Rochester, Minnesota
    MS-Off Ver
    Excel 2007
    Posts
    80

    Create Range from highlighted cells for Pivot Table Source Data

    Hello,

    I am trying to use the following code to highlight all cells w/ data in my worksheet, and then use the highlighted cells as a datasource for my Pivot Table, but can't figure out how to point "SrcData = ..." line to a dynamic range... Please help.

    Thanks!

    
    Dim PvtRng As Range
    
    Range("A1").Select
    
    Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
    
    PvtRng = ActiveSheet.Selection
    
    SrcData = ActiveSheet.Sheet1 & "!" & PvtRng.Select.Address(ReferenceStyle:=xlR1C1)
    [

  2. #2
    Forum Expert
    Join Date
    02-11-2014
    Location
    New York
    MS-Off Ver
    Excel 365 (Windows)
    Posts
    6,279

    Re: Create Range from highlighted cells for Pivot Table Source Data

    As long as your heading are in row 1....


        Dim PvtRng As Range
        Dim sht As Worksheet
    
        Set PvtRng = ActiveSheet.UsedRange
    
        Set sht = Worksheets.Add
        
        ActiveWorkbook.PivotCaches.Create(SourceType:=xlDatabase, SourceData:= _
            PvtRng.Address(True, True, xlR1C1, True), Version:=xlPivotTableVersion12).CreatePivotTable _
            TableDestination:=sht.Name & "!R3C1", TableName:="PivotTable1", DefaultVersion:=xlPivotTableVersion14
    Bernie Deitrick
    Excel MVP 2000-2010

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Excel 2010 Pivot Table - Create Macro to update source data
    By swaza in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 07-29-2015, 06:59 AM
  2. [SOLVED] create more than one pivot table from the same data source
    By ethelp in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 10-07-2014, 02:29 PM
  3. Replies: 4
    Last Post: 06-25-2012, 03:25 PM
  4. Update Pivot table using a dynamic range for source data
    By Carl Thompson in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-02-2011, 08:20 AM
  5. Access Create Excel Pivot Table Data Source
    By ddecost2@gmail.com in forum Excel General
    Replies: 0
    Last Post: 07-12-2006, 04:40 PM
  6. Create Pivot Table with 2 different Data source
    By cheerboy555 in forum Excel General
    Replies: 1
    Last Post: 04-30-2006, 09:55 AM
  7. Change the range of a pivot table data source
    By Tony White in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 07-11-2005, 03:05 PM

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