+ Reply to Thread
Results 1 to 23 of 23

Copy rows into sheet according to entries in Column

Hybrid View

Hblbs Copy rows into sheet... 02-17-2009, 06:00 AM
JBeaucaire Re: Copy rows into sheet... 02-17-2009, 06:39 AM
StephenR Re: Copy rows into sheet... 02-17-2009, 06:46 AM
Hblbs Re: Copy rows into sheet... 02-17-2009, 12:27 PM
JBeaucaire Re: Copy rows into sheet... 02-17-2009, 04:23 PM
StephenR Re: Copy rows into sheet... 02-17-2009, 04:39 PM
JBeaucaire Re: Copy rows into sheet... 03-06-2009, 10:55 AM
Hblbs Re: Copy rows into sheet... 03-06-2009, 11:33 AM
StephenR Re: Copy rows into sheet... 03-06-2009, 11:50 AM
Hblbs Re: Copy rows into sheet... 03-06-2009, 12:11 PM
  1. #1
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75

    Copy rows into sheet according to entries in Column

    Hello all,

    I was wondering if anyone can help with this. I copy rows of data according the Workgroup entries in Column C and paste them in to the relevant team sheet so that it is separated and printed off. Currently I am doing this manually, as the report length is variable and can be a few hundred rows or sometimes a few thousand which takes up some time. I know I can use the auto filter option, but as I currently use a macro to format this report I was hoping to include it whilst it is being formatted. Also would like to apply all borders to report so its easier to read when printed and a comments column at the end, but this can be done later.

    There are teams and 27 workgroups to separate into each team, I have to do this everyday and was hoping to save some time here. I've attached a sample work book as an example.

    Thanks in advance.
    Attached Files Attached Files

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Copy rows into sheet according to entries in Column

    Like this? I added a helper column to your data that uses the legend of codes you had on each sheet. All you need to do is extend the list and include the helper column so the Sheets know which rows to pull. We're pulling the unique ID called REF over with the heavy-lifting array, then using simple INDEX/MATCH to bring over the matching data for the rows that go with the Ref #.

    The colored column on the individual sheet is the heavy formula. It's an array, so any edits should be confirmed with CTRL-SHIFT-ENTER before you copy it down. I've already structured the formula to analyze 1000 rows of data on Sheet1.

    The Legend of Keys can go down to 100 codes without having to change the Key column formula.
    Attached Files Attached Files
    Last edited by JBeaucaire; 02-17-2009 at 06:44 AM. Reason: Uploaded wrong workbook
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Copy rows into sheet according to entries in Column

    Here's something to get you started:
    Sub x()
    
    Dim rng As Range, sSheet As String
    
    With Sheet1
        For Each rng In .Range("C2", .Range("C2").End(xlDown))
            Select Case rng
                Case "N01", "N02", "N03", "N04", "N05": sSheet = "North"
                Case "E06", "E07", "E08", "E21", "E32": sSheet = "East"
                Case "E09", "E10", "S15", "009": sSheet = "Central"
                Case "S11", "S13", "S14", "BCT", "011", "013": sSheet = "South"
                Case "S12", "W18", "W19", "W20", "012": sSheet = "Edgware"
                Case "W16", "W17": sSheet = "West"
            End Select
            Sheets(sSheet).Cells(Rows.Count, 1).End(xlUp)(2).Resize(, 14) = rng.Offset(, -2).Resize(, 14).Value
            Sheets(sSheet).Columns("A:N").AutoFit
        Next rng
    End With
    
    End Sub

  4. #4
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75

    Re: Copy rows into sheet according to entries in Column

    Hi, thank you both for these. The first solution works fine and can be tailored to report length but I would like to include this in my existing macro. The second also work very well, all the data is picked up despite varying report length.

    The only thing is the dates seem to alter when their copied to the other sheets, some cells go from dd/mm/yyyy to mm/dd/yyyy.

    Also don't know if I need to start a separate thread for this but since this needs to printed out I'm trying to get all borders applied so that it is clear to read and comments can be placed in Column O.

    Many thanks

  5. #5
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Copy rows into sheet according to entries in Column

    Quote Originally Posted by Hblbs View Post
    Hi, thank you both for these. The first solution works fine and can be tailored to report length but I would like to include this in my existing macro. The second also work very well, all the data is picked up despite varying report length.

    The only thing is the dates seem to alter when their copied to the other sheets, some cells go from dd/mm/yyyy to mm/dd/yyyy.

    Also don't know if I need to start a separate thread for this but since this needs to printed out I'm trying to get all borders applied so that it is clear to read and comments can be placed in Column O.

    Many thanks
    My sheet is just drawing the values over from the other sheet. Format those date columns (Ctrl-1) to display the dates any way you want.

    =========
    If that takes care of your need, be sure to EDIT your original post (Go Advanced) and mark the PREFIX box [SOLVED]

  6. #6
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Copy rows into sheet according to entries in Column

    Further to JBeaucaire's comment, specific formatting requirements could be incorporated into my code (and no doubt JB's solution) but you would need to specify them!

  7. #7
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75

    Re: Copy rows into sheet according to entries in Column

    Hi thanks for you replies. The code works fine on its own when the sheets are created but when I try to attach it to a user form that I use to open, format and save the spread sheet it does not work.

    Error message :- run time error 9 : subscript out of range.

    It only seems to work when I save, close and then re-open and run the code separately. When the code is run, the dates change to mm/dd/yyyy, but even when I go to format cell it stays as it is.

    
    Private Sub cbReport_Click()
    Private Sub cbReport_Click()
        Dim day As String
        Dim month As String
        Dim year As String
        Dim month_name As String
        Dim year_long As String
        Dim storage_path As String
        Dim generic_file_name As String
        Dim file_name As String
        Dim report_length As Integer
        Dim line_number As Integer
        
        'Assign text box values to respective variables
        day = tbDay
        month = tbMonth
        year = tbYear
        
        'Close Report window and set text box values to null
        Report.Hide
        tbDay = ""
        tbMonth = ""
        tbYear = ""
            
        'Set path for report storage area
        storage_path = Range("Path!A1")
        'Determine generic file name
        generic_file_name = Range("Path!A2")
          
        'Determine report file name from day, month and year
        'Determine month name
        Select Case month
            Case "01"
                month_name = "January"
            Case "02"
                month_name = "February"
            Case "03"
                month_name = "March"
            Case "04"
                month_name = "April"
            Case "05"
                month_name = "May"
            Case "06"
                month_name = "June"
            Case "07"
                month_name = "July"
            Case "08"
                month_name = "August"
            Case "09"
                month_name = "September"
            Case "10"
                month_name = "October"
            Case "11"
                month_name = "November"
            Case "12"
                month_name = "December"
        End Select
        
        'Determine year in 4 digit format
        year_long = "20" & year & ""
    
        'Store file name in variable file_name
        file_name = "" & generic_file_name & " " & day & " " & month & " " & year & ".xls"
           
        'Open report file
        Workbooks.Open Filename:="" & storage_path & "\" & year_long & "\" & month_name & "\" & file_name & ""
                
        'Procedure to format report with:
        
        Call AddsheetstoPrint
        
        Call x
           
    exit_point:
        'Save report file
        ActiveWorkbook.Save
        'Close report file
        ActiveWorkbook.Close
        'Return to Main worksheet on macro program file
        Sheets("Main").Select
        'Display confirmation message box
        MsgBox "Report completed, stored in file:" & Chr(13) & storage_path & "\" & year_long & "\" & month_name & "\" & file_name & "", , ""
    End Sub
        
    End Sub
    The Call Addsheets to print formats the sheets for printing and Call x copies the rows into the corresponding sheets.
    Last edited by Hblbs; 03-06-2009 at 05:08 AM.

  8. #8
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Copy rows into sheet according to entries in Column

    Was there something wrong with the formula I gave you? What's wrong?

  9. #9
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75

    Re: Copy rows into sheet according to entries in Column

    JBeaucaire,

    There was nothing wrong with the formula, you've provided exactly what was required for this thread, thank you. The only reason I've stuck to the macro is that the attachment I've provided is not the original format and is formatted using a macro form. I was hoping to use StephenR's formula to my own (see last post) but there is a run time error created and I was hoping someone may know why it is not working.

    Thanks

  10. #10
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Copy rows into sheet according to entries in Column

    On which line does it error?

  11. #11
    Registered User
    Join Date
    09-24-2008
    Location
    UK
    Posts
    75

    Re: Copy rows into sheet according to entries in Column

    The error occurs on the following line, your code is used using the Call ... function. The code you've provided only works in isolation, not when I try to attach it to my own.

       Sheets(sSheet).Cells(Rows.Count, 1).End(xlUp)(2).Resize(, 14) = rng.Offset(, -2).Resize(, 14).ValueEnd Sub
    Hope this makes sense, if not please let me know. Thanks

  12. #12
    Forum Guru
    Join Date
    08-26-2007
    Location
    London
    Posts
    4,606

    Re: Copy rows into sheet according to entries in Column

    What is the value of sSheet when it errors?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

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