+ Reply to Thread
Results 1 to 2 of 2

Replace Piv Table Data Source

Hybrid View

  1. #1
    Registered User
    Join Date
    01-18-2014
    Location
    Chicago
    MS-Off Ver
    Excel 2013
    Posts
    88

    Replace Piv Table Data Source

    I have a workbook that has a pivtable report based on the data from sheet 2. I want to use the following code or something similar to update the data on Sheet 2 of my workbook. The line "ThisWorkbook.Sheets(2).UsedRange.Offset(1).ClearContents" is upsetting to my pivtable.

    How can I use VBA to completely replace the data source while maintaining the integrity of my pivtable?






    Public Sub Import1_Click()
    ' Get customer workbook...
    Dim customerBook As Workbook
    Dim filter As String
    Dim caption As String
    Dim customerFilename As String
    Dim customerWorkbook As Workbook
    Dim targetWorkbook As Workbook
    Application.ScreenUpdating = False
    
    'Clear contents of target worksheet leaving header row intact
    ThisWorkbook.Sheets(2).UsedRange.Offset(1).ClearContents
    
    
    ' make weak assumption that active workbook is the target
    Set targetWorkbook = Application.ActiveWorkbook
    
    ' get the customer workbook
    filter = "Text files (*.xlsx),*.xlsx"
    caption = "Please Select an input file "
    customerFilename = Application.GetOpenFilename(filter, , caption)
    Set customerWorkbook = Application.Workbooks.Open(customerFilename)
    
    
    ' copy data from customer to target (this) workbook, set wich worksheet and cell to insert imported data
    Dim targetSheet As Worksheet
    Set targetSheet = targetWorkbook.Worksheets(2)
    Dim sourceSheet As Worksheet
    Set sourceSheet = customerWorkbook.Worksheets(1)
    Intersect(sourceSheet.UsedRange, sourceSheet.UsedRange.Offset(1, 0)).Copy targetSheet.Range("A1")
    
    
    ' Close customer workbook
    customerWorkbook.Close
    Application.ScreenUpdating = True
    MsgBox "Service Call Data Successfully Updated!"
    End Sub
    Last edited by fgruhlke; 07-07-2015 at 06:39 AM.

  2. #2
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,610

    Re: Replace Piv Table Data Source

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here



    (This thread should receive no further responses until this moderation request is fulfilled, as per Forum Rule 7)

+ 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. [SOLVED] Pivot Table- Data no longer in table source still showing
    By Smally in forum Excel General
    Replies: 7
    Last Post: 09-10-2014, 11:23 AM
  2. Pivot Table, use VBA to get use back to record in source data table
    By gr8tday in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-17-2014, 01:30 AM
  3. [SOLVED] Summary table updated from source table. Source table held in a different workbook
    By dma1976 in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 11-22-2013, 11:36 AM
  4. [SOLVED] Data Validation - replace choices for multiple sheets of source data
    By mshaw1970 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-20-2013, 07:34 AM
  5. [SOLVED] Pivot Table data source "data source contains no visible tables"
    By Jane in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 09-29-2005, 04: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