Results 1 to 2 of 2

Loop to Copy/Paste Defined Data

Threaded View

  1. #1
    Valued Forum Contributor AlvaroSiza's Avatar
    Join Date
    09-19-2007
    Location
    Staffordshire
    MS-Off Ver
    2007
    Posts
    591

    Loop to Copy/Paste Defined Data

    The attached should explain what I'm trying to accomplish.

    Essentially, I would like to loop through a column (where I have tested my data and returned a 1 if true, 0 if false - Column K in attached). For each instance of 1, I would like to copy the corresponding Name (Column D in attached) and paste to a defined area. Loop continues whereby each instance of 0 is ignored and each instance of 1 results in the corresponding name being copied and pasted offset to the most recent existing by 0 columns and 3 rows.

    Souce code included in Module 1 is my effort, need help wrapping it up.

    Sub AboveAnalysis()
    
        Application.ScreenUpdating = False
        
        Sheets("Sheet1").Select
        Dim Name As Range
        Dim counter As Integer
        Dim c As Integer
            counter = 0
            Range("StartAnalysis").Select
            For c = 0 To 7
                counter = ActiveCell.Offset(c, 0).Value
                If counter = 1 Then
                
                ' THIS IS WHERE I NEED ASSISTANCE TO COPY/PASTE THE CORRESPONDING NAME WHERE CODE = 1, SKIPPING TWO
                ' LINES FOR EACH CODE = 1.
                
                End If
            Next c
    
    End Sub
    Thanks!
    Attached Files Attached Files
    Last edited by AlvaroSiza; 07-28-2011 at 09:55 AM.

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