Results 1 to 10 of 10

VBA loop through list

Threaded View

  1. #1
    Registered User
    Join Date
    06-19-2015
    Location
    New York, USA
    MS-Off Ver
    2013
    Posts
    11

    VBA loop through list

    Hey gurus,

    I have managed to write the below code to extract each line in a sheet that contains the data which is written in the inputbox and paste in to another sheet. I need to update this to loop through a list of data rather than use an inputbox for each. A new sheet will also need to be created during the loop so that the lines are pasted in to separate sheets.

    strsearch = CStr(InputBox(""))
    
    lastline = Range("A15000").End(xlUp).Row
    j = 1
    
    For i = 1 To lastline
        For Each c In Range("C" & i & ":Z" & i)
            If c.Text = strsearch Then
                tocopy = 1
            End If
        Next c
        If tocopy = 1 Then
            Rows(i).Copy Destination:=Sheets(3).Rows(j)
            j = j + 1
        End If
    tocopy = 0
    Next i
    I haven't had much luck on my own thus far :/ Any help would be much appreciated! Thanks!
    Last edited by neilkotze; 07-06-2015 at 11:48 AM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] loop through data list
    By a.hudrea in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 09-23-2014, 08:15 AM
  2. Loop in list and fill in other list
    By theconscience in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 12-31-2013, 04:33 AM
  3. Loop through a Filtered List
    By EggHead in forum Excel Programming / VBA / Macros
    Replies: 15
    Last Post: 10-24-2011, 03:10 PM
  4. Loop through drop down list
    By moglione1 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-23-2006, 11:17 AM
  5. Loop & add number list
    By Whiz Kid in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 09-15-2005, 03:05 AM

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