+ Reply to Thread
Results 1 to 10 of 10

Search Value

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-23-2006
    Location
    Near London, England
    MS-Off Ver
    Office 2003
    Posts
    770

    Re: Search Value

    Hi, that second section of code was from me, and it works fine for what you said you were doing in the post where you asked for it. However for the problem you have here you do not need it.
    In your original code you don't need to be activating, or selecting cells to do the core functions, just at the end when you want the selection moved to the cell that was found (for some reason), so it would need to be like this:
    Sub findnext()
    Dim found As Range
    
    On Error Resume Next
    Set found = Cells.Find(What:="ASK Training Managers", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
            :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
            False, SearchFormat:=False)
    On Error GoTo 0
            
    ' Make sure that something was found
    If found Is Nothing Then Exit Sub
    
    ' Copy from an offset of (-5,2) to "AC12"
    found.Offset(-5, 2).Copy Destination:=ActiveSheet.Range("AC12")
    
    found.Select
    End Sub
    EDIT
    I see you have made another post. It doesn't help people to help you when you keep changing the code function!
    The first code you posted has no looping, the second code has suddenly got a loop in it, and the absolute destination of "AC12" has turned variable.

    Please detail, (in words, not code), what EXACTLY you are trying to achieve, and THEN we can offer assistance.
    Last edited by Phil_V; 07-29-2009 at 05:13 AM. Reason: Another post from the OP
    If you find the response helpful please click the scales in the blue bar above and rate it
    If you don't like the response, don't bother with the scales, they are not for you

  2. #2
    Registered User
    Join Date
    07-28-2009
    Location
    Egypt
    MS-Off Ver
    Excel 2003
    Posts
    35

    Re: Search Value

    but i need also to use this code section because i exepect many values and i need to list all of them in order .

    but i don't know why it just goes for one step and stop

    ActiveCell.Copy
       ActiveSheet.Paste Destination:=dstrng.Offset(c, 0)
       Application.CutCopyMode = False
       c = c + 1
       n = n + 1
     Loop While n = 10

  3. #3
    Registered User
    Join Date
    07-28-2009
    Location
    Egypt
    MS-Off Ver
    Excel 2003
    Posts
    35

    Re: Search Value

    now i modified to this but i got an error : " object required "



    Dim dstrng As Range
    Dim firstaddx As String
    Dim n As Long
    Dim c As Long
    Dim found As Range
    Dim found1 As Range
    
    
    
    Sub findnext()
    
    Set dstrng = Range("AD20")
    n = 0
    c = 0
    
    Do
    
    Set found = Cells.Find(What:="ASK Training Managers", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
            :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
            False, SearchFormat:=False).Activate
            
     Set found1 = Cells.findnext(After:=ActiveCell).Activate
        
    ActiveCell.Offset(-5, 2).Select
    
    
    
        found.Offset(-5, 2).Copy Destination:=dstrng.Offset(c, 0)
    
    found1.Select
    
       c = c + 1
       n = n + 1
     Loop While n = 10
       
     
    End Sub

+ 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