VBA Find exact match help and Nth Occurance

jjsauer

Board Regular
Joined
Jan 11, 2012
Messages
58
Hello,

This section of code I am working on requires me to find an exact text (I tried lookat:=xlWhole, but I can't get it to work right). The problem being is when it searches for Q1, Q10 is an acceptable answer ans so on. I need to get the 4th occurrence, but my research into Nth occurrence stuff is confusing, so any consolidation would be appreciated.

The search is in a single column.

With Workbooks("FY12-Q3 Data Tables.xlsx").Sheets("PBA Crosstabs").Columns(1)
Set c = .Find(rCell, LookIn:=xlValues, lookat:=xlWhole)
Set c = .Find(rCell, After:=c, lookat:=xlWhole)
Set c = .Find(rCell, After:=c, lookat:=xlWhole)
Set c = .Find(rCell, After:=c, lookat:=xlWhole)
End With

Thanks in advance!
 

Excel Facts

Repeat Last Command
Pressing F4 adds dollar signs when editing a formula. When not editing, F4 repeats last command.
What is the text string you are looking for?
 
Upvote 0
Here is an example of what is in the column:

Q19r1
Q19r2
Q19r9
Q19r10
Q19r8
Q19r5
Q19r6

This one particular data sheet is different than all the rest because we had to run it through a different software program. So I am a little lost. The output repeats the "Q19r8" 4 times before it gets to the one I was trying to use as a reference and if I cannot search for the exact text than the macro will not work since it will capture Q19r10 when it looks for Q19r1
 
Upvote 0
Hi

If you want to find the nth occurrence use .FindNext

Ex. (without processing errors):

Code:
Sub Test()
Dim r As Range
 
With Range("A1:A10")
 
    Set r = .Find(What:="abc", After:=Range("A10"), LookIn:=xlValues, LookAt:=xlPart)
    Set r = .FindNext(r)
 
End With
 
MsgBox "Found second occurrence at: " & r.Address

End Sub
 
Upvote 0
Here is an example of what is in the column:

Q19r1
Q19r2
Q19r9
Q19r10
Q19r8
Q19r5
Q19r6

This one particular data sheet is different than all the rest because we had to run it through a different software program. So I am a little lost. The output repeats the "Q19r8" 4 times before it gets to the one I was trying to use as a reference and if I cannot search for the exact text than the macro will not work since it will capture Q19r10 when it looks for Q19r1

Hi,

Another alternative might be:

Code:
Sub example()

Dim i As Long
Dim c As Range

With Workbooks("FY12-Q3 Data Tables.xlsx").Sheets("PBA Crosstabs").Columns(1)
    Set c = .Cells(.Rows.Count, .Columns.Count)
    For i = 1 To 4 ' change 4 to the occurrence you want
        Set c = .Find("Q19r8", c, xlValues, xlWhole)
    Next i
End With

End Sub

Using xlWhole should match the whole cell, so partial matches shouldn't be a problem.
 
Upvote 0
Hi

If you want to find the nth occurrence use .FindNext

Ex. (without processing errors):

Code:
Sub Test()
Dim r As Range
 
With Range("A1:A10")
 
Set r = .Find(What:="abc", After:=Range("A10"), LookIn:=xlValues, LookAt:=[COLOR=red][B]xlPart[/B][/COLOR])
Set r = .FindNext(r)
 
End With
 
MsgBox "Found second occurrence at: " & r.Address
 
End Sub
I think you meant xlwhole and not xlPart where shown in red above.
 
Upvote 0
@pcg01 & Rick Rothstein
Thank you for the assistance with the nth occurrence. I will integrate it when I get the exact match figured out.

@Chicken
I appreciate your response. The only issue is I would have to repeat that code nearly 200 times and one of the major tasks in this whole macro is setting up the macro to allow for some edits (additions/deletions) so I am trying to not used fixed text, but a FOR EACH rCell function.
 
Upvote 0
@pcg01 & Rick Rothstein
Thank you for the assistance with the nth occurrence. I will integrate it when I get the exact match figured out.

@Chicken
I appreciate your response. The only issue is I would have to repeat that code nearly 200 times and one of the major tasks in this whole macro is setting up the macro to allow for some edits (additions/deletions) so I am trying to not used fixed text, but a FOR EACH rCell function.

I don't think you need to repeat it, that was just an example. You can replace the string with your rCell variable and nest it in your For Each loop.
 
Upvote 0

Forum statistics

Threads
1,214,431
Messages
6,119,458
Members
448,899
Latest member
maplemeadows

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