Find cell value vith loop function

Marlowwe

New Member
Joined
Jan 12, 2016
Messages
46
Hey Guys,

I looking for solution when I want to search text in Cell D6 in column D. But the word could be in several cells and I need to add The Next function to search (Search and find next cell with text from cell D6).

Code:
Sub Hledat1()


    Dim rfoundCell As Range

    'Searching text from cell D6
    X = Range("D6").Value
    
    ' Search range is column D
    Set rfoundCell = Range("D7:D10000").Find(what:=X, LookIn:=xlValues, lookat:=xlPart)
    
    If Not rfoundCell Is Nothing Then
    
    ' After found text in cell, select the cell and show message
    rfoundCell.Select
    MsgBox "Searched word: " & X & vbCrLf & "was found in cell: " & rfoundCell.Address(0, 0)
    Else
    
        MsgBox "Searched word: " & X & vbCrLf & " was not found"
    
    End If


End Sub

Can you please help me with this ?

THX
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
Perhaps

Code:
Sub srchword()
Dim i As Integer
Dim j As String
lastrow = Worksheets("Sheet1").Cells(Rows.Count, "D").End(xlUp).Row
j = ""
For i = 7 To lastrow
If Cells(i, 4) = Cells(6, 4) Then
    j = j & Cells(i, 4).Address & " "
End If
Next i
MsgBox "Word " & D6 & " found in cells " & j
End Sub
 
Last edited:
Upvote 0
Hi,

Try

Code:
Sub Hledat1()
    
    Dim rfoundCell As Range
    Dim firstaddress As String
    
'Searching text from cell D6
    X = Range("D6").Value
    
' Search range is column D
    Set rfoundCell = Range("D7:D10000").Find(what:=X, LookIn:=xlValues, lookat:=xlPart)
    
    If Not rfoundCell Is Nothing Then
        firstaddress = rfoundCell.Address
' After found text in cell, show message
        Do
            MsgBox "Searched word: " & X & vbCrLf & "was found in cell: " & rfoundCell.Address(0, 0)
            Set rfoundCell = Range("D7:D10000").FindNext(rfoundCell)
        Loop While rfoundCell.Address <> firstaddress
    Else
        
        MsgBox "Searched word: " & X & vbCrLf & " was not found"
        
    End If
    
    
End Sub

you can see working example of Range.FindNext Method in the VBA helpfile.

Dave
 
Last edited:
Upvote 0
Perhaps

Rich (BB code):
Sub srchword()
Dim i As Integer
Dim j As String
lastrow = Worksheets("Sheet1").Cells(Rows.Count, "D").End(xlUp).Row
j = ""
For i = 7 To lastrow
If Cells(i, 4) = Cells(6, 4) Then
    j = j & Cells(i, 4).Address & " "
End If
Next i
MsgBox "Word " & D6 & " found in cells " & j
End Sub

Hey thx, But VBA editor gives me a error and Highlight
Code:
lastrow = Worksheets("Sheet1").Cells(Rows[COLOR=#ff0000][FONT=arial black].Count[/FONT][/COLOR], "D").End(xlUp).Row
 
Upvote 0
Hi,

Try

Code:
Sub Hledat1()
    
    Dim rfoundCell As Range
    Dim firstaddress As String

..
    
End Sub

you can see working example of Range.FindNext Method in the VBA helpfile.

Dave

It works Good, but I need to work like this:

1. write a search word
2. Push the button to find results
3. 1st results was found, but it is not what I want -> click next
4. 2nd results was found, but it is not what I want -> click next
5. 3rd results was found, it is what I want -> click OK and the macro end and the cell with right text is selected


Your macro find 1st result, then click ok.. ant this procedure have to be done until last result.

Could you please help me with that ?
 
Upvote 0
Hey thx, But VBA editor gives me a error and Highlight
Code:
lastrow = Worksheets("Sheet1").Cells(Rows[COLOR=#ff0000][FONT=arial black].Count[/FONT][/COLOR], "D").End(xlUp).Row

You must have entered something wrong, this is my standard command to find the last row occupied.
I've used this many times for other routines.
What you/I have pasted in the forum I've copied to the VBA editor and it parses it fine.
 
Upvote 0

Forum statistics

Threads
1,214,808
Messages
6,121,686
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top