error while using find method

ajaypal_sp

New Member
Joined
Feb 11, 2015
Messages
25
HI,


I'm trying to find repeated text in a particular column ("A2:A21") by using "Find" Method. At '.Find' code, iam getting "Type Mismatch" error. Pls go through the below code and help me.

Code:
Option Explicit

Sub returnrepeatedtextcelladdresses()
Dim l As Variant
Dim rng, rfound As Range
Dim i, r As Integer
l = Thisworkbook.Worksheets("sheet3").Cells(Rows.Count, "a").End(xlUp).Row
l = Cells(l, 1).Address
i = 1
Set rng = Thisworkbook.Worksheets("sheet3").Range("a2:a21")
Do While Cells(i, 1).Address <> l
    Set rfound = rng.Find(What:="AJAY", After:=Cells(i, 1), _
                            LookIn:=xlValues, LookAt:=xlWhole, _
                            SearchOrder:=xlByRows, SearchDirection:=xlNext, _
                            MatchCase:=False)
r = rfound.Row
 i = r
 MsgBox rfound.Address
 Loop
End Sub


Best Regards
Ajaypal
 

Excel Facts

Last used cell?
Press Ctrl+End to move to what Excel thinks is the last used cell.

Forum statistics

Threads
1,214,944
Messages
6,122,384
Members
449,080
Latest member
Armadillos

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