+ Reply to Thread
Results 1 to 2 of 2

Summary report, auto copy /insert

  1. #1
    Registered User
    Join Date
    10-10-2013
    Location
    MARION, IL.
    MS-Off Ver
    Excel 2013
    Posts
    10

    Summary report, auto copy /insert

    Hello
    I am trying to do a summary of multiple sheets that will update as new data is keyed in.

    Example Daily Overtime report TEST..xlsx

    Please refer to attachment. What I would like to do is key information onto sheet "CREW 1" and any row that contained information would be copied and inserted onto the summary sheet under the corresponding header automatically.
    Any help is greatly appreciated
    Thanks
    Last edited by Leith Ross; 04-14-2014 at 07:44 PM.

  2. #2
    Registered User
    Join Date
    10-10-2013
    Location
    MARION, IL.
    MS-Off Ver
    Excel 2013
    Posts
    10

    Re: Summary report, auto copy /insert

    Ok, I have came across the code below which gets me real close to what I need to happen, but I loose all formating of the cells when I run the code. Is there a way to maintain formating and do what I need it to do?

    Sub MergeSheets()
    Const sRANGE = "A1:Z100"
    Dim iSheet, iTargetRow As Long, oCell As Object, bRowWasNotBlank As Boolean
    Dim iTop, iLeft, iBottom, iRight As Long
    'Sheets(1).Select: Sheets.Add
    Sheets(1).Select
    Cells.Select
    Selection.Clear
    bRowWasNotBlank = True
    For iSheet = 2 To ThisWorkbook.Sheets.Count: DoEvents
    For Each oCell In Sheets(iSheet).Range(sRANGE).Cells: DoEvents
    If oCell.Column = 1 Then
    If bRowWasNotBlank Then iTargetRow = iTargetRow + 1
    bRowWasNotBlank = False
    End If
    If oCell.MergeCells Then
    bRowWasNotBlank = True
    If oCell.MergeArea.Cells(1).Row = oCell.Row Then
    If oCell.MergeArea.Cells(1).Column = oCell.Column Then
    Sheets(1).Cells(iTargetRow, oCell.Column) = oCell
    iTop = iTargetRow
    iLeft = oCell.Column
    iBottom = iTop + oCell.MergeArea.Rows.Count - 1
    iRight = iLeft + oCell.MergeArea.Columns.Count - 1
    Sheets(1).Range(Cells(iTop, iLeft), Cells(iBottom, iRight)).MergeCells = True
    End If
    End If
    End If
    If Len(oCell) Then bRowWasNotBlank = True
    Sheets(1).Cells(iTargetRow, oCell.Column) = oCell
    Next oCell
    Next
    Sheets(1).Activate
    End Sub

    Daily Overtime report TEST..xlsm
    I added the "What I want Summary Sheet" and now it throws an error. You will have to delete that sheet to run the code.
    Last edited by DRFJR; 04-22-2014 at 03:23 PM.

+ 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. Auto Copy PO Line Items into Summary Report
    By Yap Chin Joo in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 11-12-2013, 11:16 AM
  2. Auto Copy PO Line Items into Summary Report
    By Yap Chin Joo in forum Excel General
    Replies: 0
    Last Post: 11-12-2013, 11:16 AM
  3. Convert Detailed Time Attendance report from Biometrics to Summary Report
    By firescorpio in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 10-02-2013, 02:48 AM
  4. Copy Paste the Missing Values in a Specified Cells and Insert the Rows into a Report
    By judeprem in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-30-2013, 01:46 PM
  5. Form Email from Report, Only if Report summary sheet lists Acct for that Sales Rep
    By lukep10 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-28-2008, 01:38 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