+ Reply to Thread
Results 1 to 16 of 16

Conditionally Copy rows to new sheet in Excel 2007

Hybrid View

souvick Conditionally Copy rows to... 11-16-2011, 04:14 AM
Steffen Thomsen Re: Conditionally Copy rows... 11-16-2011, 05:12 AM
souvick Re: Conditionally Copy rows... 11-16-2011, 06:00 AM
Steffen Thomsen Re: Conditionally Copy rows... 11-16-2011, 06:06 AM
souvick Re: Conditionally Copy rows... 11-16-2011, 06:18 AM
souvick Re: Conditionally Copy rows... 11-16-2011, 06:24 AM
Steffen Thomsen Re: Conditionally Copy rows... 11-16-2011, 06:21 AM
souvick Re: Conditionally Copy rows... 11-16-2011, 06:36 AM
Steffen Thomsen Re: Conditionally Copy rows... 11-16-2011, 06:36 AM
souvick Re: Conditionally Copy rows... 11-16-2011, 06:41 AM
Steffen Thomsen Re: Conditionally Copy rows... 11-16-2011, 06:57 AM
souvick Re: Conditionally Copy rows... 11-16-2011, 07:08 AM
souvick Re: Conditionally Copy rows... 11-16-2011, 07:18 AM
Steffen Thomsen Re: Conditionally Copy rows... 11-16-2011, 07:46 AM
TghFox Re: Conditionally Copy rows... 11-16-2011, 09:20 AM
Steffen Thomsen Re: Conditionally Copy rows... 11-16-2011, 09:23 AM
  1. #1
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Smile Conditionally Copy rows to new sheet in Excel 2007

    Hi,

    I am trying to write a VBA Macro for the attached template wherein the objective is to filter the rows based on the Month Column and copy them to new sheet.

    The number of rows and column can vary in the original file but the filtering criteria remains the same i.e. on Month.

    I want the rows to be copied to new sheets in the excel for each month.

    For example in the template, five rows have Jan-12 in month. I want them to be copied to new sheet called Jan12 and all five rows copied there. Similarly for Feb12 and so on.

    The number of sheets should automatically added based on months.

    Please help.

    Thanks in Advance

    Regards
    Paul
    Attached Files Attached Files
    Last edited by souvick; 11-16-2011 at 07:10 AM. Reason: Solved

  2. #2
    Valued Forum Contributor Steffen Thomsen's Avatar
    Join Date
    10-15-2010
    Location
    Kolding, Denmark
    MS-Off Ver
    Excel 2007 and Excel 2010
    Posts
    953

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Hi,

    Try running the code in this workbook and se if it does whats required!

    Steffen Thomsen
    Attached Files Attached Files

  3. #3
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Quote Originally Posted by Steffen Thomsen View Post
    Hi,

    Try running the code in this workbook and se if it does whats required!

    Steffen Thomsen
    Thanks a lot Steffen...

    It works as expected.

    Only a query..once the sheets are generated and I run the macro once again through a button click, same entry is made on the existing sheets and the data is duplicated.

    I mean when I first run the macro, 4 new sheets are generated with 4 months. I then run the macro again, and on the same 4 sheets the rows are repeated.

    Anyway I can prevent this, so that if someone clicks the button again and the macro runs, it should delete the existng sheets and generate the new sheets.

    Or can you help me add one more macro to delete the existing sheets apart from the main sheet?

    Thanks in advance

    Regards
    Souvick

  4. #4
    Valued Forum Contributor Steffen Thomsen's Avatar
    Join Date
    10-15-2010
    Location
    Kolding, Denmark
    MS-Off Ver
    Excel 2007 and Excel 2010
    Posts
    953

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Then use this code!

    Sub steffen()
    
    uRows = Application.WorksheetFunction.CountA(Sheets(1).Range("F1:F60000"))
    Dim sheetArr() As String
    Dim wSheet As Worksheet
    
    Application.DisplayAlerts = False
    For i = Sheets.Count To 2 Step -1
        Sheets(i).Delete
    Next i
    Application.DisplayAlerts = True
    
    For Each cell In Range("F2:F" & uRows)
            On Error Resume Next
            Set wSheet = Sheets(Format(cell, "mmm-yyyy"))
            If wSheet Is Nothing Then 'Doesn't exist
                Sheets.Add After:=Sheets(Sheets.Count)
                ActiveSheet.Name = Format(cell, "mmm-yyyy")
                Sheets(1).Range("A1").EntireRow.Copy
                ActiveSheet.Range("A1").PasteSpecial
                cell.EntireRow.Copy
                With Sheets(Format(cell, "mmm-yyyy"))
                    .Range("A60000").End(xlUp).Offset(1, 0).PasteSpecial
                End With
            Else
                cell.EntireRow.Copy
                    With Sheets(Format(cell, "mmm-yyyy"))
                        .Range("A60000").End(xlUp).Offset(1, 0).PasteSpecial
                    End With
            End If
    Next cell
    
    End Sub
    Steffen Thomsen

  5. #5
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Excellent,

    This just serves the purpose. I think I should be able to learn quite fast on this forum.

    Thanks a ton Steffen.

    Kind Regards
    Paul

  6. #6
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Re: Conditionally Copy rows to new sheet in Excel 2007

    ********accidental repeat post*************
    Please see the post below
    Last edited by souvick; 11-16-2011 at 06:38 AM. Reason: Accidental repeat post

  7. #7
    Valued Forum Contributor Steffen Thomsen's Avatar
    Join Date
    10-15-2010
    Location
    Kolding, Denmark
    MS-Off Ver
    Excel 2007 and Excel 2010
    Posts
    953

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Your welcome!

    If the answer was satisfied, then please mark the thread as solved according to the forum rules

    Steffen Thomsen

  8. #8
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Hi Steffen,

    Now the problem is unique. I added few more rows into the Sheet 1 with month May,Jun,Jul and Aug entries.

    Then on running the macro, it still generates only 4 sheets from Jan to Apr.

    How to adapt the macro to consider the new row entries as well?

    Thanks in Advance

    Regards
    Paul

  9. #9
    Valued Forum Contributor Steffen Thomsen's Avatar
    Join Date
    10-15-2010
    Location
    Kolding, Denmark
    MS-Off Ver
    Excel 2007 and Excel 2010
    Posts
    953

    Re: Conditionally Copy rows to new sheet in Excel 2007

    The code works for more than 4 sheets as it is, have you made any alterations to the code?

  10. #10
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Red face Re: Conditionally Copy rows to new sheet in Excel 2007

    Hi Steffen,

    Please see the attached template.

    I just added few more rows of input data and clicked on the button to run the macro. Still it shows only 4 sheets till Apr and doesn't reflect the new entries of May, Jun,Jul and Aug as can be seen on Sheet 1.


    Thanks in Advance

    Regards
    Paul
    Attached Files Attached Files

  11. #11
    Valued Forum Contributor Steffen Thomsen's Avatar
    Join Date
    10-15-2010
    Location
    Kolding, Denmark
    MS-Off Ver
    Excel 2007 and Excel 2010
    Posts
    953

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Sorry, just missed a thing!
    Sub steffen()
    
    uRows = Application.WorksheetFunction.CountA(Sheets(1).Range("F1:F60000"))
    Dim sheetArr() As String
    Dim wSheet As Worksheet
    
    Application.DisplayAlerts = False
    For i = Sheets.Count To 2 Step -1
        Sheets(i).Delete
    Next i
    Application.DisplayAlerts = True
    
    For Each cell In Range("F2:F" & uRows)
            On Error Resume Next
            Set wSheet = Sheets(Format(cell, "mmm-yyyy"))
            If wSheet Is Nothing Then 'Doesn't exist
                Sheets.Add After:=Sheets(Sheets.Count)
                ActiveSheet.Name = Format(cell, "mmm-yyyy")
                Sheets(1).Range("A1").EntireRow.Copy
                ActiveSheet.Range("A1").PasteSpecial
                cell.EntireRow.Copy
                With Sheets(Format(cell, "mmm-yyyy"))
                    .Range("A60000").End(xlUp).Offset(1, 0).PasteSpecial
                End With
            Else
                cell.EntireRow.Copy
                    With Sheets(Format(cell, "mmm-yyyy"))
                        .Range("A60000").End(xlUp).Offset(1, 0).PasteSpecial
                    End With
            End If
            Set wSheet = Nothing
    Next cell
    
    End Sub

  12. #12
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Thanks a lot,

    Now it works just as expected. Appreciate your helping a novice like me.


    Kind Regards
    Paul

  13. #13
    Registered User
    Join Date
    11-16-2011
    Location
    India
    MS-Off Ver
    Excel 2007
    Posts
    20

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Hi Steffen,

    If you don't mind me asking, the only difference I see here is the initialization of wSheet. Since I am newly exposed to excel programming, can you please help me understand how does that help in getting the data refreshed in Sheet 1 as was the problem earlier?

    Thanks in Advance

    Kind Regards
    Souvick

  14. #14
    Valued Forum Contributor Steffen Thomsen's Avatar
    Join Date
    10-15-2010
    Location
    Kolding, Denmark
    MS-Off Ver
    Excel 2007 and Excel 2010
    Posts
    953

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Hi,

    Before each cell evaluation im resetting the variable wSheet, look at this line at the bottom of the code

    Set wSheet = Nothing

  15. #15
    Registered User
    Join Date
    03-15-2011
    Location
    Indonesia
    MS-Off Ver
    Excel 2003
    Posts
    4

    Re: Conditionally Copy rows to new sheet in Excel 2007

    Hi ,

    I've tried changing the data line with the first code, and obtain different results, finally, I understand the combination function of "On Error", "set wSheet" , "for each"

    thanks for the quick reply, Steffen
    Last edited by TghFox; 11-16-2011 at 10:19 AM. Reason: already understand

  16. #16
    Valued Forum Contributor Steffen Thomsen's Avatar
    Join Date
    10-15-2010
    Location
    Kolding, Denmark
    MS-Off Ver
    Excel 2007 and Excel 2010
    Posts
    953

    Re: Conditionally Copy rows to new sheet in Excel 2007

    No, it just means that if wSheet is not reset the check at the top for the existence of the sheet doens't work properly

+ 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