+ Reply to Thread
Results 1 to 2 of 2

Paste all data in one sheet o f data from multiple sheet

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-13-2014
    Location
    India
    MS-Off Ver
    Excel 2013
    Posts
    140

    Paste all data in one sheet o f data from multiple sheet

    Hi,
    Have 2 sheet A, B and in a workbook

    All three sheets has data in same with seven columns format as below

    Sr. No. (A1)
    URL(B1)
    Code(C1)
    Posted by(D1)
    Name(E1)
    Date(F1)
    Priority(G1).

    I want to all data in one sheet (Cumulative sheet). Please refer attachment.

    In sheet “A” there are 10 records, in sheet “B” there are 29 records and sheet “C” there are 21 records. So total 60 records.
    So there are 60 records in Cumulative sheet.

    Please note that attachment is just an example. The data range will be any number of records in original file.
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    08-16-2015
    Location
    Antwerpen, Belgium
    MS-Off Ver
    2007-2016
    Posts
    2,380

    Re: Paste all data in one sheet o f data from multiple sheet

    Maybe this can help

    Sub Leo()
    For Each Sheet In Sheets
        If Sheet.Name <> "Cumulative sheet" Then
            With Sheets(Sheet.Name)
                .Range("A1").CurrentRegion.Offset(1).Copy Destination:= _
                Sheets("Cumulative sheet").Range("A" & Rows.Count).End(xlUp).Offset(1)
            End With
        End If
    Next
    End Sub
    Kind regards
    Leo

+ 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. [SOLVED] Copy paste data one to multiple sheet based on cell value to sheet name
    By kannan1847 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 03-15-2015, 12:54 AM
  2. [SOLVED] Paste data from one sheet to specific sheet in multiple workbooks
    By tstrebel in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 10-30-2014, 01:34 PM
  3. Replies: 0
    Last Post: 05-21-2013, 03:09 PM
  4. [SOLVED] Copy and paste data from sheet 2 to sheet 1 based on specific criteria on sheet 1
    By VBADUD in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-05-2012, 04:18 AM
  5. Copy Sheet / Create & Name New Sheet / Insert Before a Sheet / Paste Data
    By thinkspac in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-12-2012, 02:27 PM
  6. Replies: 1
    Last Post: 03-01-2012, 09:44 PM
  7. copy paste data with multiple selected ranges from sheet to sheet
    By sivdin in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-14-2011, 02:45 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