On Thu, 2 Mar 2006 14:09:26 -0800, "GC78"
<(E-Mail Removed)> wrote:
>Let me explain more clearly. I work in a lab where we send samples to be
>tested in other labs. I am entering one record for each test done ("test" is
>the primary key), and the address/contact information for the lab where it is
>to be sent. However, some labs do more than one test, so I am having to
>re-enter their addresses for each test that they do. I am wondering if there
>is some sort of auto-complete function, as in Excel, so that once I start
>typing the address it will be automatically completed; or whether there is
>some other way to do this. Thanks...
Then you should certainly have a separate table of Labs, and your test
table should NOT contain any address information for the labs.
Instead, it should contain only the LabID, a link to the primary key
of the Labs table. In your Form you would use a combo box based on the
Labs table to select which lab; your Reports would be based on a query
joining the test table to the Labs table, picking up the lab address
fields from the Labs table and the test-specific information from the
tests table.
You may be making the common assumption that you need all information
in the same table. *You don't*. You can and will use Queries joining
tables to produce reports.
John W. Vinson[MVP]
|