+ Reply to Thread
Results 1 to 2 of 2

Populate master sheet from feeder sheet

  1. #1
    Registered User
    Join Date
    10-27-2014
    Location
    Baton Rouge
    MS-Off Ver
    2010
    Posts
    1

    Populate master sheet from feeder sheet

    Hello all,

    I'm trying to create a master spreadsheet and have 3-4 spreadsheets it pulls information from automatically if possible. I've tried the following with no luck:

    Sub LoopThroughDirectory()
    Dim MyFile As String
    Dim erow
    Dim Filepath As String
    Filepath = "C:\Users\j\Desktop\Req Tracking"
    MyFile = Dir(Filepath)
    Do While Len(MyFile) > 0
    If MyFile = "zmaster.xlsm" Then
    Exit Sub
    End If

    Workbooks.Open (Filepath & MyFile)
    Range("A2:D2").Copy
    ActiveWorkbook.Close

    erow = Sheet1.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0).Row
    ActiveSheet.Paste Destination:=Worksheets("Sheet1").Range(Cells(erow, 1), Cells(erow, 4))

    MyFile = Dir
    Loop
    End Sub

    Any help would be greatly appreciated

  2. #2
    Valued Forum Contributor natefarm's Avatar
    Join Date
    04-22-2010
    Location
    Wichita, Kansas
    MS-Off Ver
    2016
    Posts
    1,020

    Re: Populate master sheet from feeder sheet

    Please observe forum rules and place code in code tags. Thanks.
    Acts 4:12
    Salvation is found in no one else, for there is no other name under heaven given to mankind by which we must be saved.

+ 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. Replies: 1
    Last Post: 09-15-2014, 01:03 PM
  2. To populate data to a new sheet from a master sheet.
    By saptarshi27 in forum Excel General
    Replies: 1
    Last Post: 07-22-2014, 01:01 PM
  3. Auto populate from a master sheet to another sheet
    By velvethammer in forum Excel General
    Replies: 8
    Last Post: 06-11-2014, 02:36 PM
  4. Want to auto populate an excel sheet from a master sheet of data
    By M>E> in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 06-07-2014, 03:34 PM
  5. populating master spreadsheet from several feeder spreadsheets
    By roheel in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 11-05-2013, 06:49 AM

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