+ Reply to Thread
Results 1 to 1 of 1

Multiple sheets import vba

Hybrid View

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

    Multiple sheets import vba

    I this is my first post in this forum sorry if it's something easy, but I'm a newbie in VBA and I need to do this for my company but I can't really figure out how.

    I'm having problems integrating/merging the codes posted with my actual code, the other codes besides mine are able to import data from multiple sheets but I can't figure out how to implement them in my own code.

    My actual code and made by me and a lot of help from tutorials is this:


     Option Explicit
     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
     Workbooks.Open (Path)
    
     Set SourceWb = Workbooks("Status 496 800 semana 12 2015.xls")    'Change "Source" to the name of your company workbook
    
     Set TargetWb = Workbooks("Master_Atual_2015.xlsm") 'change the file address
    
     Lstrw = SourceWb.Sheets(1).Cells.Find(What:="*", SearchOrder:=xlRows, SearchDirection:=xlPrevious, LookIn:=xlValues).Row
     With SourceWb.Sheets(1)
    .Application.Union(.Range("D2:D" & Lstrw), .Range("F2:F" & Lstrw), .Range("I2:I" & Lstrw), .Range("M2:M" & Lstrw)).Copy Destination:=TargetWb.Sheets(1).Range("A3")
    
    End With
    SourceWb.Close savechanges:=False
    Application.ScreenUpdating = True
    
     End Sub

    This is one of the codes that can import multiple data from more than 1 sheet, and I would like to merge this code with mine or if someone ably the principle to my own code. (1ºCODE):


    Sub MoveData()
    Dim LastRow As Long, WS1 As Worksheet, WS2 As Worksheet
    Set WS1 = Sheets("Sheet1")
    Set WS2 = Sheets("Sheet2")
    LastRow = WS1.Cells.Find("*", , xlValues, , xlRows, xlPrevious).Row 
    Intersect(WS1.Rows("2:" & LastRow), WS1.Range("D:D,F:F,I:I,M:N")).Copy WS2.Range("A3")
    End Sub

    This is one of the codes that can import multiple data from more than 1 sheet, and I would like to merge this code with mine or if someone ably the principle to my own code. (2ºCODE):


     Sub Button1_Click()
     Dim WS1 As Worksheet, WS2 As Worksheet
     Dim RangeArea As Range, x
     Set WS1 = Sheets("Sheet1")
     Set WS2 = Sheets("Sheet2")
     x = 0
     For Each RangeArea In WS1.Range("D:D,F:F,I:I,M:N").SpecialCells(xlCellTypeConstants, 23).Areas
        RangeArea.Copy WS2.Range("A3").Offset(0, x)
        x = x + 1
     Next RangeArea
     End Sub

    I thank you for any reply in advance.
    Last edited by themluis; 06-23-2015 at 05:30 AM. Reason: Understanding will be easier

+ 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. Import big text file into multiple sheets
    By Josh_123456 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 10-08-2015, 08:17 PM
  2. Import multiple txt files to excel sheets
    By Martijn79 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 06-21-2014, 12:22 PM
  3. [SOLVED] Import data from multiple .mdb to multiple sheets
    By hcyeap in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-29-2014, 09:14 PM
  4. Replies: 2
    Last Post: 08-30-2007, 12:34 PM
  5. [SOLVED] how do i use import to consolidate data from multiple sheets
    By Naveen in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 04-14-2006, 07:45 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