No retyping required

Pudge27

New Member
Joined
Feb 19, 2004
Messages
2
I have a very simple database that basically has 2 tables and 2 forms. It basically is tracking how and where sales people spent their allowances. This use to be kept in an Excel spread sheet and was an absolute mess with typos on peoples name and missing spending acct #'s. Is there a way that as a person begins to type a persons name in the text box of the form that access can bring up a previous value that was already typed.
Any help is appreciated.
 

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
Sounds like you need to use a combobox and not a textbox. You can associate the combobox values to a table. You will need to setup a query that runs off your table with all the names in it, each time the form is opened, to populate this combo box table with only unqiue instances of the names.

PS-Run a query on your data table, put the name field in it, add the name field a second time and change the totals option to count, and click the display checkbox to false(Do not display). Set this as a make table query to update the unique name list. Associate this table as the datasource for your combo.
Set your form open event to run the make table query, and you should have what you want. You will need to make sure your limit to list property for the combobox is set to no, otherwise they won't be able to enter new information. You should also set the make table query to run after each entry in the main table to update the values after a new entry.

Hope this helps.
 
Upvote 0

Forum statistics

Threads
1,221,622
Messages
6,160,887
Members
451,676
Latest member
Assy Bissy

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