Auto Population of fields

E

EJ

I have created a db that tracks equipment repair/expense. I have been asked
to create fields in an entry form that would auto-populate based on
information entered in another field.

If Equipment # = FL1 than Model # would be XM123 and Serial # is 654-321.

I have this information in a current table but can not get the desired
result. Help!
 
J

John W. Vinson

I have created a db that tracks equipment repair/expense. I have been asked
to create fields in an entry form that would auto-populate based on
information entered in another field.

If Equipment # = FL1 than Model # would be XM123 and Serial # is 654-321.

I have this information in a current table but can not get the desired
result. Help!

Well... as a rule you might want to *DISPLAY* these values on a form, but not
store them redundantly in another table. If the equipment number defines the
model number and serial number, then the model and serial should be stored in
the equipment table, and noplace else!

You can display them on the form by using a Combo Box based on the equipment
table to store the Equipment # (by the way, it's best NOT to use the #
character in a fieldname; it's a date delimiter and Access can get confused).

Include the other fields that you want to show in the combo's rowsource query.

On the form put textboxes with control sources like

=comboboxname.Column(n)

where n is the zero based position of the field - i.e. if the serial number is
the third field in the query, use (2).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top