Results 1 to 4 of 4

Need help with cells.find and do if looping

Threaded View

wellsw Need help with cells.find and... 07-15-2013, 03:11 PM
Leith Ross Re: Need help with cells.find... 07-15-2013, 04:48 PM
6StringJazzer Re: Need help with cells.find... 07-15-2013, 04:51 PM
wellsw Re: Need help with cells.find... 07-16-2013, 08:53 AM
  1. #1
    Registered User
    Join Date
    12-05-2012
    Location
    USA
    MS-Off Ver
    Excel 2010
    Posts
    35

    Need help with cells.find and do if looping

    I have been trying to adapt the following code

    Sub Test()
    Dim C As Range
    With Range("C2:C15")
    
    Set C = Cells.Find("#N/A")
    If Not C Is Nothing Then
            firstAddress = C.Address
            Do
            LR = Sheet2.Cells(Rows.Count, "A").End(xlUp).Row
            Union(Cells(C.Row, 1), Cells(C.Row, 2), Cells(C.Row, 3), Cells(C.Row, 4)).Copy Sheet2.Cells(LR + 1, "A")
            Set C = Cells.FindNext(C)
            Loop While Not C Is Nothing And C.Address <> firstAddress
    End If
    End With
    End Sub
    What I need it to do is look only in column C for cells that are not = to "#N/A"
    currently it finds N/A's in Multiple columns and returns an entry for each.

    I realize the union code is not required for this example but it will be for other iterations of the macro
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] Looping Find Function
    By hkayani08 in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 04-02-2012, 10:05 AM
  2. looping in the find command
    By jmgriffin101 in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-17-2009, 06:50 AM
  3. Looping Find
    By Gus80 in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 06-05-2008, 06:34 PM
  4. Looping the Find Function
    By maverick_abhi in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 05-04-2007, 01:54 AM
  5. Looping Macro - using find
    By DBaggs in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 03-17-2005, 01:34 PM

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