+ Reply to Thread
Results 1 to 10 of 10

Search Value

Hybrid View

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

    Search Value

    Hi All,

    I have a problem with this code , i'm trying to find a value on a sheet and once i find it i offset my selection to a cell of a figure and copy this figure to another cell.

    my problem is , i need to resume the search from the last founded figure ,

    how to do that ?

    Sub findnext()
    
    Cells.Find(What:="ASK Training Managers", After:=ActiveCell, LookIn:=xlFormulas, LookAt _
            :=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:= _
            False, SearchFormat:=False).Activate
            
              
        
    ActiveCell.Offset(-5, 2).Select
    
    
    Selection.Copy
        Range("AC12").Select
        ActiveSheet.Paste
        ActiveCell.Select
        
        
    If cell_position(1) <> "" Then
            Range(cell_position(1)).Select
        Else
            MsgBox "No previous cell stored"
        End If
    
    
      End Sub

    i have recieved this code but it doesn't work


    Dim cell_position(0 To 1) As String
    
    Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    cell_position(1) = cell_position(0)
    cell_position(0) = Target.Address
    end sub
    
    If cell_position(1) <> "" Then
            Range(cell_position(1)).Select
        Else
            MsgBox "No previous cell stored"
        End If
    
    
      End Sub

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

    Re: Search Value

    I have modified my code to this one ,

    the new problem is it's just work for one step and stop , that mean i think my loop doens't work fine .


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

  3. #3
    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

  4. #4
    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

  5. #5
    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

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

    Re: Search Value

    I'll ask again, WHAT are you trying to achieve?

    Find each occurance of "ASK Training Managers", and for each occurance copy the value that is at an offset of -5 rows, and + 2 columns into a list that starts at "AD20", and works it's way down for each value?

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

    Re: Search Value

    Find each occurance of "ASK Training Managers", and for each occurance copy the value that is at an offset of -5 rows, and + 2 columns into a list that starts at "AD20", and works it's way down for each value?
    exactly that's what i'm doing

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

    Re: Search Value

    In that case try the following. Using 'Select' and 'Activate' the way that you are will only serve to tie you in knots

    Sub findnext()
    Dim found As Range, dest_rng As Range
    Dim first_found_addr As String
    
    With ActiveSheet
        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
        
        first_found_addr = found.Address
        
        ' Loop until we either come back to the first cell we found, or for some reason we can't find anything
        Do
            ' Copy from an offset of (-5,2) to "AD20" list
            If .Range("AD20") = "" Then ' If AD20 is blank then put the result there, otherwise add to the list
                Set dest_rng = Range("AD20")
            ElseIf .Range("AD21") = "" Then
                Set dest_rng = Range("AD21")
            Else
                Set dest_rng = .Range("AD20").End(xlDown).Offset(1)
            End If
            found.Offset(-5, 2).Copy Destination:=dest_rng
            ' Find the next occurance and set 'found' to be that cell
            Set found = .Cells.findnext(found)
        Loop While found.Address <> first_found_addr
    End With
    End Sub

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

    Re: Search Value

    thanks a lot , it works very well

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

    Re: Search Value

    Please remember to mark the thread as 'Solved'.
    Edit your first post, click [Go Advanced], then use the drop down next to the subject to select [Solved]

+ 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