Setting up lookup fields (1 Viewer)

Angel69

Registered User.
Local time
Today, 17:19
Joined
Jun 11, 2013
Messages
86
When I set up lookup fields that point to a table do I save those tables in the back end with the main tables or is it okay to have in in the front end and not the back end? Users will need to make udpates to the tables for instance an employee table they would need to add employee names. What is the correct way? TIA
 

Uncle Gizmo

Nifty Access Guy
Staff member
Local time
Today, 22:19
Joined
Jul 9, 2003
Messages
16,363
A normal lookup table will consist of an ID field and a description field, in other words only two fields. (A developer would use 3+ fields)

The normal way to extract the lookup information is to use a combobox and only store the ID field from the look-up table.

The normal way to allow the user to add items into a lookup table is to set the combobox (as described above) set its "not in list" event to add a record to the lookup table. (The "not in list" event is easy to setup in MS Access 2007 and up)
 
Last edited:

Users who are viewing this thread

Top Bottom