Consulting

Results 1 to 3 of 3

Thread: HELP - Copy Variable Sheet Range from multiple sheets to Summary Sheet

  1. #1

    HELP - Copy Variable Sheet Range from multiple sheets to Summary Sheet

    i have a sheet that i need to copy certain ranges to a summary sheet, but the ranges start in different cells in each sheet and are different row numbers.

    I recorded what i was looking to do and is also included in the attached workbook (password: finance).

    I am looking to combine the macro below with one to merge all these sheets in one summary workbook.

    Thank you all.

    Sub Macro1()
    '
    ' Macro1 Macro
    '
    '
        Cells.Find(What:="401(K) MATCHING", After:=ActiveCell, LookIn:=xlFormulas _
            , LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
            MatchCase:=False, SearchFormat:=False).Activate
        Selection.End(xlToLeft).Select
        Range(Selection, ActiveCell.SpecialCells(xlLastCell)).Select
        Selection.Copy
    End Sub
    Attached Files Attached Files

  2. #2
    Knowledge Base Approver VBAX Guru GTO's Avatar
    Joined
    Sep 2008
    Posts
    3,368
    Location
    Hi there,

    Your attachment seems to be fouled up for me at least. Could you try attaching the workbook again?

    Mark

  3. #3

    attachment updated

    2013 (1).xlsm

    attachment updated

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •