Match Search Combobox to Record with Tab

tsroque

Board Regular
Joined
Jan 19, 2007
Messages
126
Office Version
  1. 365
Hi!

I created a SearchBox combo box on my form (frm_speakers). All works fine, except I want my SearchBox field to match the LastName on the form. How do I do that?

Thank you!
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
so, if the user did NOT use the combo,... you want it to show the bound item in the LastName field?
 
Upvote 0
Hi! Yes...so I want the LastName to match in the Search Box as it is to the record, itself. Right now, as I scroll through the records, it does not stay the same.
 
Upvote 0
You can set it on the on current event

Something like:

Code:
Private Sub Form_Current()
Me.[COLOR=#b22222]MycomboBox[/COLOR].Value = Me.[COLOR=#b22222]Surname[/COLOR]
End Sub

You will need to change the control names to suit your form.
 
Upvote 0

Forum statistics

Threads
1,214,518
Messages
6,119,988
Members
448,935
Latest member
ijat

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