Results 1 to 4 of 4

Creating auto updating Summary Sheet

Threaded View

baldymon Creating auto updating... 08-04-2014, 09:25 AM
baldymon Re: Creating auto updating... 08-04-2014, 09:29 AM
baldymon Re: Creating auto updating... 08-06-2014, 02:55 AM
baldymon Re: Creating auto updating... 08-06-2014, 02:50 AM
  1. #1
    Registered User
    Join Date
    08-04-2014
    Location
    UK
    MS-Off Ver
    2010
    Posts
    4

    Exclamation Creating auto updating Summary Sheet

    Hi, first post, so hopefully have adhered to all forum rules.

    I have been looking to create a summary sheet from data that exists in other sheets (within the same workbook). Searched and searched and came across a Excel Forum thread which had the following macro in a book1.xls file: -

    Private Sub Worksheet_Activate()
    Dim Sheet As Worksheet
    For Each Sheet In Me.Parent.Sheets
        If Sheet.Name <> Me.Name Then
            If Sheet.Cells(Rows.Count, 1).End(xlUp).Row <> 1 Then
                Sheet.Range(Sheet.Cells(2, 1), Sheet.Cells(Sheet.Cells(Rows.Count, 1).End(xlUp).Row, 10)).Copy Destination:=Me.Cells(Rows.Count, 1).End(xlUp).Offset(1, 0)
    
            End If
        Else
            Me.Range(Cells(2, 1), Cells(Rows.Count, 10)).Clear
        End If
    Next Sheet
    End Sub
    This macro seemed to perform the job I needed as each tab (varying number of tabs) has a list (in the same format) but differing lengths and this macro seemed to append to the data as it went throug the tabs, and the summary table was updated automatically as data was populated on the other tabs, or as tabs were inserted. It seemed to only work for the first 10 columns.

    I thought it was ideal and copied it down without noting the thread number or the title.

    As a novice, what I also failed to find out was: -

    1) If I add this macro to another workbook, how do I configure the workbook to be able to run this macro? (dummies guide would be good)
    2) How can I modify this macro to look at specific columns and that are spread over the worksheet e.g. column A, D, F, X, Y etc? (I could re-arrange the data, but for asthetic reasons would rather not).
    3) Is there any easier method for creating a summary sheet of data of an inderminable size and spread across an undeterminable number of tabs?
    4) I would also like to add extra information on the summary sheet for columns not copied across (but based on the copied data) so that calculations and eventually a self configuring pivot table can be created. Can this be achieved easily?

    Not much to ask, I know but if anyone can help, it would be appreciated.

    Thanks
    Last edited by baldymon; 08-05-2014 at 04:19 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] NEw tabs, auto updating summary tab
    By Mechanical Pencil in forum Excel General
    Replies: 3
    Last Post: 11-11-2013, 09:57 AM
  2. Creating auto populating Summary sheet as new sheets are added to work book
    By Phraedrique in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 01-18-2012, 05:01 PM
  3. Creating an Auto Populating Order Summary Sheet
    By ArcBen in forum Excel General
    Replies: 0
    Last Post: 09-06-2011, 07:45 AM
  4. Updating Summary Sheet from Newly Created Sheet
    By Applem21 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 09-07-2010, 01:16 PM
  5. Replies: 2
    Last Post: 01-12-2006, 10:35 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