TextBox Find MatchCase

asyamonique

Well-known Member
Joined
Jan 29, 2008
Messages
1,280
Office Version
  1. 2013
Platform
  1. Windows
Good Day,
Is the any way to make below code to run more powerful?
If column A has huge datas as in ID number of clients when I type the ID number on textbox1 textbox2 doen't updating correctly, especially if the ID numbers has similar digits in it.
Many thanks.

VBA Code:
Private Sub TextBox11_AfterUpdate()
On Error Resume Next
Dim ws As Worksheet, rngFind As Range
Set ws = ThisWorkbook.Sheets("LIST")
Set rngFind = ws.Range("a:a").Find(what:=Me.TextBox1.Value, MatchCase:=True)
If Not rngFind Is Nothing Then
Me.TextBox2.Value = rngFind.Offset(0, 1).Value
End If
End Sub
 

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,)
Any chance the previous time .find was used it was for partial match?

The range.find method has some arguments that are persistant (ie: held over from last use) and should be specified for current use.
 
Upvote 0

Forum statistics

Threads
1,215,069
Messages
6,122,954
Members
449,095
Latest member
nmaske

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