+ Reply to Thread
Results 1 to 3 of 3

Increment data when importing

Hybrid View

themluis Increment data when importing 06-25-2015, 08:51 AM
JPMEXCEL Re: Increment data when... 06-28-2015, 10:58 AM
themluis Re: Increment data when... 06-29-2015, 01:57 AM
  1. #1
    Registered User
    Join Date
    06-23-2015
    Location
    Portugal
    MS-Off Ver
    2010
    Posts
    11

    Increment data when importing

    So the code that I have done is working importing a specific range of values and pasting perfectly in the target folder.

    But in my company there exists a need to import the data from that file but to always increment. For example: the file where I extract the data is from week 1 and the info is in the main file but next week the file from week 2 is out and needs to be imported when I import the data it pastes the data over the old one.

    But the problem is that I also need to keep the old data in the main file too. So It should increment down below. to demonstrate this I will use some numbers.

    Data Imported from first week source workbook: 1,1,1,1
    Data pasted In target workbook: 1,1,1,1

    Data Imported from second week source workbook: 2,2,2,2
    Data Pasted in target workbook: 2,2,2,2

    Result wanted data imported from both source WB to target WB: 1,1,1,1,2,2,2,2

    Sub ImportData()
        Application.ScreenUpdating = False
        Dim Path As String, Lstrw As Long
        Dim SourceWb As Workbook
        Dim TargetWb As Workbook
        
        Path = "C:\Users\DZPH8SH\Desktop\Status 496 800 semana 12 2015.xls"    'Change this to your company workbook path
        Set SourceWb = Workbooks.Open(Path)
        Set TargetWb = ThisWorkbook
        
        Dim n As Integer, targetRow As Long
        targetRow = 3
        
        With SourceWb.Sheets(1)
            Lstrw = .Cells.Find(What:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row
            .Range("M1:M" & Lstrw).AutoFilter Field:=1, Criteria1:="496"
            .Application.Union(.Range("D2:D" & Lstrw), .Range("F2:F" & Lstrw), .Range("I2:I" & Lstrw), .Range("M2:M" & Lstrw)).Copy
            TargetWb.Sheets(7).Range("A" & targetRow).PasteSpecial xlPasteValues
            .ShowAllData
        End With
    
        With SourceWb.Sheets(2)
            Lstrw = .Cells.Find(What:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row
            .Application.Union(.Range("D2:D" & Lstrw), .Range("F2:F" & Lstrw), .Range("I2:I" & Lstrw), .Range("M2:M" & Lstrw)).Copy
            TargetWb.Sheets(7).Cells(TargetWb.Sheets(7).Rows.Count,"A").End(xlUp)(2).PasteSpecial xlPasteValues
        End With 
       
        SourceWb.Close savechanges:=False
        Application.ScreenUpdating = True
        
    End Sub
    Can you try adding the code in my existing code.
    Last edited by themluis; 06-25-2015 at 09:33 AM.

  2. #2
    Registered User
    Join Date
    06-23-2015
    Location
    Bogota,Colombia
    MS-Off Ver
    2013
    Posts
    4

    Re: Increment data when importing

    Hello,
    I sugest this line:
    targetRow = Application.WorksheetFunction.CountA(Workbooks("TargetWB").Sheets(7).Columns(1).Rows) + 3
    Instead
    targetRow = 3

    It is only to move beyond the last row in the 7 sheet ,

    Use it and let me know if it works!!

  3. #3
    Registered User
    Join Date
    06-23-2015
    Location
    Portugal
    MS-Off Ver
    2010
    Posts
    11

    Re: Increment data when importing

    Works like a charm thanks :D

+ 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. Scrollbar increment through data set
    By nanoslee in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-10-2014, 06:03 PM
  2. How to Change values by increment in Data Table
    By maani in forum Excel Programming / VBA / Macros
    Replies: 40
    Last Post: 08-25-2009, 07:34 AM
  3. Increment by column from data in rows
    By bs979 in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 06-18-2008, 12:06 PM
  4. Data validation - Cell to increment by 1
    By jimmy mcmahon in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 12-30-2007, 07:30 PM
  5. [SOLVED] Increment/Increment letter in alphabetical order
    By Neil Goldwasser in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-25-2006, 05: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