Results 1 to 4 of 4

Create a Dynamic Master List from 10 different sheets.

Threaded View

djshane Create a Dynamic Master List... 06-11-2016, 02:40 AM
vcoolio Re: Create a Dynamic Master... 06-11-2016, 07:04 AM
djshane Re: Create a Dynamic Master... 06-12-2016, 04:07 AM
vcoolio Re: Create a Dynamic Master... 06-12-2016, 05:06 AM
  1. #2
    Valued Forum Contributor
    Join Date
    06-29-2014
    Location
    Australia
    MS-Off Ver
    MSO 365
    Posts
    1,104

    Re: Create a Dynamic Master List from 10 different sheets.

    Hello DjShane,

    Perhaps the following code assigned to a button on a "Summary" sheet should do the task for you:-


    Sub SummariseSongs()
    
    Application.ScreenUpdating = False
            
            Dim ws As Worksheet
            Dim lr As Long
    
    lr = Range("F" & Rows.Count).End(xlUp).Row
    Sheets("Summary").UsedRange.Offset(1).ClearContents
    
            For Each ws In Worksheets
            ws.Range("F2", ws.Range("F" & ws.Rows.Count).End(xlUp)).Copy Sheets("Summary").Range("A" & Rows.Count).End(xlUp)(2)
            ws.Range("F2", ws.Range("F" & ws.Rows.Count).End(xlUp)).Delete
     Next ws
    
    Sheets("Summary").Columns.AutoFit
    
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
    
    End Sub
    I've attached my test work book for you to play with. In it, I have five sheets plus a Summary sheet. The code will work on ten sheets without any problems. Click on the "Summarise" button to see it work.

    The code also deletes the Column F entries from each sheet once transferred to the "Summary" sheet and the "Summary" sheet will clear old data once new data is transferred over (or we could create a separate button just to clear the "Summary" sheet if you like).

    I hope that this helps.

    Cheerio,
    vcoolio.
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Create a dynamic list from multiple sheets
    By shbiskup in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 10-28-2022, 04:04 AM
  2. [SOLVED] Create a master list from dynamics lists in multiple sheets.
    By excobra in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 01-28-2016, 02:31 PM
  3. Macro create sheets from master and copy data from list to new worksheet
    By su2009 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-20-2015, 10:36 AM
  4. Create Separate Sheets from "Master List"
    By krista_o in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 06-27-2014, 05:37 PM
  5. [SOLVED] Create master list from multiple sheets in the same format
    By malmandras in forum Excel General
    Replies: 1
    Last Post: 05-09-2013, 01:59 PM
  6. 12 Worksheets that are similiar in look and dynamic -> Want to create 1 master
    By movingoutofindy in forum Excel Programming / VBA / Macros
    Replies: 25
    Last Post: 03-14-2013, 09:35 AM
  7. Rik Dynamic Sheets, One Master
    By rz6657 in forum Excel General
    Replies: 2
    Last Post: 08-21-2006, 07:06 PM

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