Hi and thank you for your help....at this time, it looks like what you have
described is exactly what is happening. So I see the MedName in the combo box
on the form, but it is stored as the MedID in the table. I am wondering if I
can somehow store the MedName instead. The reason is that another form also
pulls from this table field, so instead of "Procrit" in the new form, it
comes up as the MedID, "2". Is there something I can do to correct this
problem?
Thank you again for your help and advice.

Signature
Kbelo
> In your table with the MedID do you also have a field for the MedName? When
> you create the combo box it pulls a wizard and you select what fields you
[quoted text clipped - 39 lines]
> > > > tblMedicationRecord.
> > > > Any help is appreciated very much. Thank you.
Kathy - 15 May 2007 22:43 GMT
PS: On the second form, I tried to change the control source of the Medicaton
text box to "=cboMeds.Column(2)", but without any luck. It "felt right" but I
must be missing something? Thank you again.

Signature
Kbelo
> Hi and thank you for your help....at this time, it looks like what you have
> described is exactly what is happening. So I see the MedName in the combo box
[quoted text clipped - 48 lines]
> > > > > tblMedicationRecord.
> > > > > Any help is appreciated very much. Thank you.
Graham Mandeno - 16 May 2007 03:44 GMT
Hi Kathy
There are two possible approaches:
One is to create a query which joins the two tables on the MedID field, and
include the MedName field in your query. That way, the "translation" from
MedID to MedName is done by your query, and all you need to do is include
that field on your form or report, or whatever.
If you really want to store the text in your many-side table, then your
MedID primary key serves no purpose whatsoever. You could delete it, and
make MedName the "natural" primary key. However, all related tables would
need to be changed to store the name instead of the ID.

Signature
Good Luck :-)
Graham Mandeno [Access MVP]
Auckland, New Zealand
> Hi and thank you for your help....at this time, it looks like what you
> have
[quoted text clipped - 69 lines]
>> > > > tblMedicationRecord.
>> > > > Any help is appreciated very much. Thank you.