+ Reply to Thread
Results 1 to 9 of 9

Copy ranges and specific cells into one worksheet

Hybrid View

  1. #1
    Registered User
    Join Date
    05-15-2014
    MS-Off Ver
    Excel 2003
    Posts
    31

    Copy ranges and specific cells into one worksheet

    Hello there,

    I have been trying to play around with the VBA and realized that this code might be a little bit much for me. I need to copy different ranges from different sheets starting from one cell until it comes up empty. I would need the first range to copy to a specific cell into the master worksheet. The other ranges would need to copy underneath after the first range has completed copying I would need to do these for 6 sheets. Attached to these ranges I would need it to pull specific cells to paste to the next column dependent on these ranges.
    Any help would be greatly appreciated!

    I have attached a worksheet with comments to try to ease up confusion.
    Attached Files Attached Files
    Last edited by asach1211; 05-15-2014 at 10:11 PM.

  2. #2
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Copy ranges and specific cells into one worksheet

    Here is my go at it:

    Sub Populate_MasterSheet()
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    '
    '  Since there is some consistency in the ranges between the sheets
    '  we can loop through each sheet and apply some logic to each range
    '  within that sheet.  I will try to simplify it for you so that you
    '  are able to see how the code works so that you can amend the code
    '  later if needed.
    '
    '  -Stnkynts
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    Dim ws As Worksheet:   Set ws = Sheets("Master")
    Dim wksht As Worksheet
    Dim lMasterLR As Long, lwkshtLR1 As Long, lwkshtLR2 As Long
    Dim strAccount As String
    
    On Error GoTo ErrHandler
    
    Application.ScreenUpdating = False
    
    For Each wksht In Worksheets
        If wksht.Name <> "Master" Then
            lMasterLR = ws.Range("D" & Rows.Count).End(xlUp).Row
            strAccount = wksht.Range("C8").Value
                If wksht.Range("B23").Value <> "" Then
                    lwkshtLR1 = wksht.Range("B" & Rows.Count).End(xlUp).Row
                    wksht.Range("B23:B" & lwkshtLR1).Copy Destination:=ws.Range("D" & lMasterLR).Offset(1, 0)
                    ws.Range("E" & lMasterLR + 1).Value = strAccount
                    ws.Range("E" & lMasterLR + 1, "E" & ws.Range("D" & Rows.Count).End(xlUp).Row).FillDown
                End If
                If wksht.Range("F23").Value <> "" Then
                    lwkshtLR2 = wksht.Range("F" & Rows.Count).End(xlUp).Row
                    wksht.Range("F23:F" & lwkshtLR2).Copy Destination:=ws.Range("K" & lMasterLR).Offset(1, 0)
                End If
        End If
    Next wksht
                    
    Application.ScreenUpdating = True
    
    Debug.Print "Procedure Completed Successfully"
    
    Exit Sub
    
    ErrHandler:
    Debug.Print "There has been a critical error."
    Application.ScreenUpdating = True
    
    End Sub

  3. #3
    Registered User
    Join Date
    05-15-2014
    MS-Off Ver
    Excel 2003
    Posts
    31

    Re: Copy ranges and specific cells into one worksheet

    Also I tried it and THIS IS EXACTLY WHAT I WANTED! Just one thing though, is that if the range doesn't start at B23 or F23 then it wont pull the data.

  4. #4
    Registered User
    Join Date
    05-15-2014
    MS-Off Ver
    Excel 2003
    Posts
    31

    Re: Copy ranges and specific cells into one worksheet

    Thank you for taking a go at it, my only question is that some ranges start from B22 and F22 and some ranges start from B23 and F23 will this be able to differentiate?

  5. #5
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Copy ranges and specific cells into one worksheet

    Try this:

    Sub Populate_MasterSheet()
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    '
    '  Since there is some consistency in the ranges between the sheets
    '  we can loop through each sheet and apply some logic to each range
    '  within that sheet.  I will try to simplify it for you so that you
    '  are able to see how the code works so that you can amend the code
    '  later if needed.
    '
    '  -Stnkynts
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    Dim ws As Worksheet:   Set ws = Sheets("Master")
    Dim wksht As Worksheet
    Dim lMasterLR As Long, lwkshtLR1 As Long, lwkshtLR2 As Long, startrow As Long
    Dim strAccount As String
    
    On Error GoTo ErrHandler
    
    Application.ScreenUpdating = False
    
    For Each wksht In Worksheets
        If wksht.Name <> "Master" Then
            lMasterLR = ws.Range("D" & Rows.Count).End(xlUp).Row
            strAccount = wksht.Range("C8").Value
                startrow = 22
                Do
                    startrow = startrow + 1
                    Debug.Print startrow
                Loop Until wksht.Range("B" & startrow).Value <> ""
                
                    lwkshtLR1 = wksht.Range("B" & Rows.Count).End(xlUp).Row
                    lwkshtLR2 = wksht.Range("F" & Rows.Count).End(xlUp).Row
                    wksht.Range("B" & startrow, "B" & lwkshtLR1).Copy Destination:=ws.Range("D" & lMasterLR).Offset(1, 0)
                    ws.Range("E" & lMasterLR + 1).Value = strAccount
                    ws.Range("E" & lMasterLR + 1, "E" & ws.Range("D" & Rows.Count).End(xlUp).Row).FillDown
                    wksht.Range("F" & startrow, "F" & lwkshtLR2).Copy Destination:=ws.Range("K" & lMasterLR).Offset(1, 0)
        End If
    Next wksht
                    
    Application.ScreenUpdating = True
    
    Debug.Print "Procedure Completed Successfully"
    
    Exit Sub
    
    ErrHandler:
    Debug.Print "There has been a critical error."
    Application.ScreenUpdating = True
    
    End Sub

  6. #6
    Registered User
    Join Date
    05-15-2014
    MS-Off Ver
    Excel 2003
    Posts
    31

    Re: Copy ranges and specific cells into one worksheet

    PERFECT! Is there anyway to have it pasted back as values? I realized I don't need to keep the formulas or formatting from the other sheets. By the way I really appreciate the help!

  7. #7
    Forum Expert
    Join Date
    07-31-2010
    Location
    California
    MS-Off Ver
    Excel 2007
    Posts
    4,070

    Re: Copy ranges and specific cells into one worksheet

    Like this:

    Sub Populate_MasterSheet()
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    '
    '  Since there is some consistency in the ranges between the sheets
    '  we can loop through each sheet and apply some logic to each range
    '  within that sheet.  I will try to simplify it for you so that you
    '  are able to see how the code works so that you can amend the code
    '  later if needed.
    '
    '  -Stnkynts
    '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
    Dim ws As Worksheet:   Set ws = Sheets("Master")
    Dim wksht As Worksheet
    Dim lMasterLR As Long, lwkshtLR1 As Long, lwkshtLR2 As Long, startrow As Long
    Dim strAccount As String
    
    On Error GoTo ErrHandler
    
    Application.ScreenUpdating = False
    
    For Each wksht In Worksheets
        If wksht.Name <> "Master" Then
            lMasterLR = ws.Range("D" & Rows.Count).End(xlUp).Row
            strAccount = wksht.Range("C8").Value
                startrow = 22
                Do
                    startrow = startrow + 1
                    Debug.Print startrow
                Loop Until wksht.Range("B" & startrow).Value <> ""
                
                    lwkshtLR1 = wksht.Range("B" & Rows.Count).End(xlUp).Row
                    lwkshtLR2 = wksht.Range("F" & Rows.Count).End(xlUp).Row
                    wksht.Range("B" & startrow, "B" & lwkshtLR1).Copy
                    ws.Range("D" & lMasterLR).Offset(1, 0).PasteSpecial xlPasteValues
                    ws.Range("E" & lMasterLR + 1).Value = strAccount
                    ws.Range("E" & lMasterLR + 1, "E" & ws.Range("D" & Rows.Count).End(xlUp).Row).FillDown
                    wksht.Range("F" & startrow, "F" & lwkshtLR2).Copy
                    ws.Range("K" & lMasterLR).Offset(1, 0).PasteSpecial xlPasteValues
        End If
    Next wksht
                    
    Application.CutCopyMode = False
    Application.ScreenUpdating = True
    
    Debug.Print "Procedure Completed Successfully"
    
    Exit Sub
    
    ErrHandler:
    Debug.Print "There has been a critical error."
    Application.ScreenUpdating = True
    
    End Sub

  8. #8
    Registered User
    Join Date
    05-15-2014
    MS-Off Ver
    Excel 2003
    Posts
    31

    Re: Copy ranges and specific cells into one worksheet

    AWESOME it worked! Thank you!

  9. #9
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Copy ranges and specific cells into one worksheet

    Thread posted in CS forum.

    Asach,

    You are duplicating efforts by posting in both the paid forum (Commercial services) and in the free forum. Your thread in the paid forum is still open. What do you intend to do with it?
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

+ 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. Copy & Pasting Multiple Cells and Ranges From Each Worksheet To a Seperate Sheet
    By tuc28869 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 03-25-2013, 02:57 PM
  2. Copy Specific Cells To Another Worksheet
    By MARY-20 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-06-2013, 02:45 PM
  3. How to display specific cells ranges with values greater than 0 on a separate worksheet
    By studentofthegame in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 10-13-2012, 04:25 PM
  4. Replies: 0
    Last Post: 10-08-2012, 05:53 PM
  5. Copy / Paste multiple loop results in specific column ranges on one worksheet
    By bfbisso in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 09-24-2012, 01:11 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