+ Reply to Thread
Results 1 to 2 of 2

Multiple excel sheets into 1 master

Hybrid View

  1. #1
    Registered User
    Join Date
    05-13-2011
    Location
    birmingham
    MS-Off Ver
    Excel 2003
    Posts
    1

    Multiple excel sheets into 1 master

    I am after some way of keeping data upto date on a master sheet within a single document. what i have got is 7 spreadsheets (all in one document) all with same colums just different rows and i am after a way of excel automatically updating the master sheet as I edit the single worksheets without having to refresh or do any thing. is this posible.

    I have found a macro code which i can use to do it manually, but the problem i am having is the 7 sheets all have the column titles at the top (4rows worth) which i want at top of the master sheet but all i keep getting is either no titles or all 7 seperating the individual sheets which just looks a mess.

    any help would be much apreciated

  2. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Multiple excel sheets into 1 master

    You are really working backwards. Why have separate input sheets & then duplicate data? The best way is to have all the data one one sheet then Excel has various methods to work with that data - AutoFilter, etc

    Here's some code that will combine sheets, you may need to adjust it for your specific needs.
    '---------------------------------------------------------------------------------------
    ' Module    : Module1
    ' DateTime  : 09/05/2007 08:43
    ' Author    : Roy Cox (royUK)
    ' Website   : www.excel-it.com for more examples and Excel Consulting
    ' Purpose   : combine data from multiple sheets to one
    ' Disclaimer; This code is offered as is with no guarantees. You may use it in your
    '             projects but please leave this header intact.
    
    Option Explicit
    
    
    '---------------------------------------------------------------------------------------
    ' Procedure : Combinedata
    ' Author    : Roy Cox
    ' Website   : www.excel-it.com
    ' Date      : 10/10/2010
    ' Purpose   : Combine data from all sheets to a master sheet
    '---------------------------------------------------------------------------------------
    '
    Sub Combinedata()
    
        Dim ws As Worksheet
        Dim wsmain As Worksheet
        Dim DataRng As Range
        Dim Rw As Long
        Dim Cnt As Integer
        Const ShtName As String = "Master" '<-destination sheet here
        Cnt = 1
    
        Set wsmain = Worksheets(ShtName)
        wsmain.Cells.Clear
        For Each ws In ThisWorkbook.Worksheets
            If ws.Name <> wsmain.Name Then
                If Cnt = 1 Then
                    Set DataRng = ws.Cells(2, 1).CurrentRegion
                    DataRng.copy wsmain.Cells(1, 1)
                Else: Rw = wsmain.Cells(Rows.Count, 1).End(xlUp).Row + 1
                MsgBox ws.Name & Rw
                Set DataRng = ws.Cells(2, 1).CurrentRegion
                    'don't copy header rows
                    DataRng.Offset(1, 0).Resize(DataRng.Rows.Count - 1, _
                                                DataRng.Columns.Count).copy ActiveSheet.Cells(Rw, 1)
                End If
            End If
            Cnt = Cnt + 1
        Next ws
    
    End Sub
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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