vba exact match -- not xlPart

want2b

Board Regular
Joined
Jan 27, 2004
Messages
89
What can I replace xlPart with to cause a search to find an exact match.
Sorry don't have help installed on this machine and search either found too much or none.
 

Excel Facts

Shade all formula cells
To shade all formula cells: Home, Find & Select, Formulas to select all formulas. Then apply a light fill color.
xlWhole

also note the MatchCase argument which can be either True or False...

Tom
 
Upvote 0
Thank you very much

I had tried Exact and Match that blew up as soon as entered
and All which it took but nothing happened when it ran.

Whole does it

Thanks
 
Upvote 0
want2b said:
Thank you very much

I had tried Exact and Match that blew up as soon as entered
and All which it took but nothing happened when it ran.

Whole does it

Thanks

This is a VBA search routine I use that is case insensitive:

Code:
Set X = ws.Columns(z).Find(Me.TextBox1.Text, after:=ws.Cells(6, z), LookIn:=xlValues, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, SearchFormat:=False)

Perry
 
Upvote 0

Forum statistics

Threads
1,214,611
Messages
6,120,513
Members
448,967
Latest member
screechyboy79

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