error on an auto update

Patriot2879

Well-known Member
Joined
Feb 1, 2018
Messages
1,259
Office Version
  1. 2010
Platform
  1. Windows
hi i have a code below that when i enter a number in TextBox11 it will find the data automatically to enter in the MPANBox, but it keeps coming up with an error please can you help me on this? many thanks.

Code:
Private Sub TextBox11_AfterUpdate()
   Dim Fnd As Range
   
   Set Fnd = Sheets("Export ETA").Range("A:A").Find(TextBox1.Value, , , xlWhole, , , False, , False)
   If Not Fnd Is Nothing Then
      MPANBox.Value = Fnd.Offset(, 2).Value

   End If
   End Sub
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.
hi just wondering if you guys have any ideas on this issue please? or do you need more info from me? thanks for your time. :)
 
Upvote 0
What error do you get & what line is highlighted?
Also you are running that code from textbox11, but looking for the value in textbox1, is that deliberate or a typo?
 
Upvote 0
silly me lol that works great now sorry about that, my mistake thank you though for your help :)
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,177
Members
453,021
Latest member
Justyna P

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