Ask a Question related to Microsoft Access, Design and Development.
-
Michael #1
Access auto fill/populate field with list of different values
I am creating a database with the following fields in the table
ID - ID Number for person
LAB - Lab Name
LABDT - Lab date
LABVAL - Value of the lab
I have a list of about 15 different labs for each person. When the
user goes to enter data on the form, I want the form to look something
like the following
LAB LABDT LABVAL
Hemo
Plate
NA
K
Which will make the data in the tables look like
ID LAB LABDT LABVAL
1 Hemo 1/1/2001 1.0
1 Plate 2/1/1/2001 5.0
1 NA 1/5/2001 10.1
1 K 2/2/2001 5.4
I want the Lab field to be specified by the form so that the user only
has to enter the labdt and labval.
How do I do this in access 2000?
Thanks
Michael Guest
-
Forms: Text field - auto fill another field?
Someone PLEASE help me... how do i structure a form so that when text is entered into one field, it auto-fills other fields on the form that are... -
#38458 [Asn->Csd]: Fails to get values of fields following a MEMO type field in MS Access
ID: 38458 Updated by: wez@php.net Reported By: costas at meezon dot com -Status: Assigned +Status: ... -
How to populate drop down list from one field withdelimiters
Hello How can we populate a drop down dynamically from the database by splitting one row of data . I have data in a field which is seperated by... -
Best way to access field values using ADO.
Is there any difference, performance-wise, between these two methods? Method 1: szSQL = "SELECT fld1, fld2, fld3 FROM tbl1" Set objRS =... -
Auto populate a field in a form from another table
Hi Julie, If you are using a combo or listbox to select the RFQ number you can simply add the item number field to the Rowsource query of the... -
John Vinson #2
Re: Access auto fill/populate field with list of different values
On 15 Jul 2003 08:42:17 -0700, [email]lumiya@yahoo.com[/email] (Michael) wrote:
Does the list vary from person to person, or is it standard?>I am creating a database with the following fields in the table
>
>ID - ID Number for person
>LAB - Lab Name
>LABDT - Lab date
>LABVAL - Value of the lab
>
>I have a list of about 15 different labs for each person.
You could base the Subform on a Query joining the list of standard>...
>
>I want the Lab field to be specified by the form so that the user only
>has to enter the labdt and labval.
labs (or a Query selecting that patient's labs) to the Results table
by the test ID using a Left Join - "show all records in StandardLabs
and matching records in Results". Be sure to include the LabID field
from the Results table in the query. Now if you enter the labdt and
labval, Access will fill in the LabID.
John W. Vinson[MVP]
Come for live chats every Tuesday and Thursday
[url]http://go.compuserve.com/msdevapps?loc=us&access=public[/url]
John Vinson Guest



Reply With Quote

