Results 1 to 4 of 4

Copy rows to new sheet based on value in Column 1

Threaded View

  1. #1
    Registered User
    Join Date
    12-05-2012
    Location
    Evergreen, Colorado
    MS-Off Ver
    Excel 2010
    Posts
    5

    Copy rows to new sheet based on value in Column 1

    Good morning,

    I have cobbled together some code to copy rows of one worksheet to the first blank row of another worksheet if there is a "Yes" in Column 1. However, I don't want to copy all the columns. There are 33 columns and I only want to copy Columns 2-30.

    What do I need to change in my code (below)?

    Any help is very much appreciated!!


    Sub KOSummary()
    Dim iMaxCol As Integer
    
        iMaxCol = 100
          
        Sheets("KO").Select
          
        If ActiveSheet.AutoFilterMode Then
            Cells.Select
            Selection.AutoFilter
        End If
          
        Cells.Select
        If ActiveSheet.AutoFilterMode = False Then
            Selection.AutoFilter
        End If
          
        Selection.AutoFilter Field:=1, Criteria1:="Yes", Operator:=xlAnd
          
        ilastrow = Cells(Rows.Count, 1).End(xlUp).Row
          
         
        For iCol = 2 To iMaxCol
            tMaxRow = Cells(Rows.Count, iCol).End(xlUp).Row
            If (tMaxRow > ilastrow) Then ilastrow = tMaxRow
              
        Next
        
        If (ilastrow = 1) Then
            MsgBox ("No Rows Marked Yes for Summary")
          
            If ActiveSheet.AutoFilterMode Then
                Cells.Select
                Selection.AutoFilter
            End If
              
            Exit Sub
        End If
          
        If Sheets("Summary").AutoFilterMode Then
            Sheets("Summary").Cells.Select
            Sheets("Summary").Selection.AutoFilter
        End If
              
        iMaxDone = Sheets("Summary").Cells(Rows.Count, iCol).End(xlUp).Row
        For iCol = 2 To iMaxCol
            tMaxRow = Sheets("Summary").Cells(Rows.Count, iCol).End(xlUp).Row
            If (tMaxRow > iMaxDone) Then iMaxDone = tMaxRow
              
        Next
          
        If iMaxDone < 2 Then iMaxDone = 1
        iMaxDone = iMaxDone + 1
          
        'Rows("2:Range(Cells(2, 1), Cells(ilastrow, iMaxCol)).Select
        Rows("2:" & ilastrow).Select
        Selection.Copy
          
        Sheets("Summary").Select
        Cells(iMaxDone, 1).Select
        Selection.PasteSpecial Paste:=xlPasteValues
          
        Sheets("Summary").Select
        Cells(iMaxDone, 1).Select
        Selection.PasteSpecial Paste:=xlPasteFormats
        
        Sheets("KO").Select
          
        If ActiveSheet.AutoFilterMode Then
            Cells.Select
            Selection.AutoFilter
        End If
    End Sub
    Last edited by arlu1201; 02-12-2013 at 09:15 AM. Reason: Code tags

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