+ Reply to Thread
Results 1 to 5 of 5

How can I combine Multiple Sheets in One Mastersheet while maintaining the Header Data

Hybrid View

  1. #1
    Registered User
    Join Date
    12-12-2013
    Location
    Madrid
    MS-Off Ver
    Excel 2007
    Posts
    2

    How can I combine Multiple Sheets in One Mastersheet while maintaining the Header Data

    Hi I am new on the forum and I hope someone can help me out.
    I am just starting with a more extensive use of Excel especially in the field of Macro´s.
    I have a Worksheet which contains multiple data sheets. these sheets will be individually updated by the responsable person.
    Currently I now manually update the Mastersheet by copying and pasting. I would hope it is possible to have this done with a Makro to update.
    I have started with recording a Makro but this is not giving the required result. Also when I try with formulas it is "cleaning" the data of the header which actually is static data.
    I have attached the file where I currently am with the Makro, far from perfect....

    I hope you can show me a better way.

    Thank you
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: How can I combine Multiple Sheets in One Mastersheet while maintaining the Header Data

    I have attached the code to the button you have.
    Attached Files Attached Files
    Last edited by AB33; 12-13-2013 at 03:04 PM.

  3. #3
    Registered User
    Join Date
    12-12-2013
    Location
    Madrid
    MS-Off Ver
    Excel 2007
    Posts
    2

    Re: How can I combine Multiple Sheets in One Mastersheet while maintaining the Header Data

    Hi,

    just been looking at it and it works great, exactly what I needed. Thank you!

  4. #4
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: How can I combine Multiple Sheets in One Mastersheet while maintaining the Header Data

    Here is some code for copying and pasting. I did not do the sort as I felt you had that under control and could add it yourself.

    Sub Sjoerd()
        Dim w1 As Worksheet
        Dim w2 As Worksheet
        Dim w3 As Worksheet
        Dim w4 As Worksheet
        Set w1 = Sheets("Resumen")
        Set w2 = Sheets("C001")
        Set w3 = Sheets("C002")
        Set w4 = Sheets("C003")
        Dim lr1 As Long
        lr1 = w1.Range("A" & Rows.Count).End(xlUp).Row
        Dim lr2 As Long
        lr2 = w2.Range("A" & Rows.Count).End(xlUp).Row
        Dim lr3 As Long
        lr3 = w3.Range("A" & Rows.Count).End(xlUp).Row
        Dim lr4 As Long
        lr4 = w4.Range("A" & Rows.Count).End(xlUp).Row
        
        Application.ScreenUpdating = False
        w1.Range("A6:Q" & lr1).ClearContents
        lr1 = w1.Range("A" & Rows.Count).End(xlUp).Row
        w2.Range("A2:Q" & lr2).Copy w1.Range("A" & lr1 + 1)
        lr1 = w1.Range("A" & Rows.Count).End(xlUp).Row
        w3.Range("A2:Q" & lr2).Copy w1.Range("A" & lr1 + 1)
        lr1 = w1.Range("A" & Rows.Count).End(xlUp).Row
        w4.Range("A2:Q" & lr2).Copy w1.Range("A" & lr1 + 1)
        Application.CutCopyMode = False
        Application.ScreenUpdating = True
    End Sub
    Alan עַם יִשְׂרָאֵל חַי


    Change an Ugly Report with Power Query
    Database Normalization
    Complete Guide to Power Query
    Man's Mind Stretched to New Dimensions Never Returns to Its Original Form

  5. #5
    Forum Moderator alansidman's Avatar
    Join Date
    02-02-2010
    Location
    Steamboat Springs, CO
    MS-Off Ver
    MS Office 365 insider Version 2504 Win 11
    Posts
    24,706

    Re: How can I combine Multiple Sheets in One Mastersheet while maintaining the Header Data

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED. Thanks.

+ 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. Combine data from multiple sheets into one
    By SuperErizzle in forum Excel General
    Replies: 1
    Last Post: 06-11-2013, 10:51 PM
  2. Replies: 1
    Last Post: 03-26-2012, 04:51 PM
  3. Excel 2007 : Mastersheet Data OntoIndividual Sheets
    By STJES in forum Excel General
    Replies: 1
    Last Post: 11-01-2011, 01:04 AM
  4. sort data on multi sheets before creating mastersheet
    By brainfreez in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 03-02-2008, 02:02 PM
  5. [SOLVED] combine data from multiple sheets
    By Roxypup in forum Excel General
    Replies: 2
    Last Post: 04-07-2006, 02:45 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