Efficient Lookup Lists

 

Fast Lookup Lists

Store Text Data As Integer Pointers to Look Up List Tables

Now that you’ve seen how not to do it let’s see the correct way to setup lookup lists.
Here’s the new table design again:

Lookup List Boxes Proper Setup

We add an Autonumber ID field to the table.  The value of the field will go into our data tables rather than the actual text value of the shipping method.

Make sure the ID field is indexed (no dups) and that it is a Long Integer.  The ID field will act as an efficient pointer into our lookup list.

Using the ID field will make the database compact, efficient, more reliable.  It will also eliminate the need for Cascading Updates to the shipping method – an example is when I go back and fix the missing ‘e’ on service in the list in example two.  If you used example 2) and you had a million shipping records then the database would need to analyze each record and update the spelling changes in hundreds of thousands of records.

Additionally, this method of creating lookup lists reduces the need to associate an abbreviation or code for each entry.  For example: F for Fedex; A for Airborne; J for Jim’s truck, etc.

Alternatively, you may have the autonumber ID field set to the primary key of the table.  In this case don’t forget to set the text field to indexed no duplicates – many believe that this is the preferred method – we don’t disagree.

(adsbygoogle = window.adsbygoogle || []).push({});

One more thing:  If you ever need to increase the size of the shipping method field you can do it without affecting other tables in your database.

Here is the new combo box on the form (with property sheet):

access lookup lists

 

Microsoft Office VBA, MS Access 2003, 2007, 2010, 2013, 2016