>Thanks for your response. Actually, I do not want to do redundant storage.
>However, when I select the supplier's name from the combo box, it only saves
>on the form and not in the column in the table. That is why I am looking to
>see if I am doing something incorrectly. Any ideas?
The table SHOULD contain only the ID.
It should NOT CONTAIN the name.
Tables are for data storage; for a field like this, what's stored is the link
to the table of supplier names. It is neither necessary nor prudent to store
the name in the table *at all*.
If you're routinely opening table datasheets to view or work with data...
don't. That's not their function! All interaction with data should be done
using Forms... where you *can* have combo boxes, extra textboxes displaying
names, etc.
John W. Vinson [MVP]
Joe - 28 Dec 2007 19:20 GMT
Thank you for you insight, John. As a point of clarification, I do not
routinely use the table or data sheet to view or work with info. My problem
here is simply trying to get the data entered into the form to save to a
particular field (supplier number) in the table, whch is not happening right
now.
Thanks, again,.
Joe
> >Thanks for your response. Actually, I do not want to do redundant storage.
> >However, when I select the supplier's name from the combo box, it only saves
[quoted text clipped - 15 lines]
>
> John W. Vinson [MVP]
John W. Vinson - 28 Dec 2007 20:47 GMT
>Thank you for you insight, John. As a point of clarification, I do not
>routinely use the table or data sheet to view or work with info. My problem
>here is simply trying to get the data entered into the form to save to a
>particular field (supplier number) in the table, whch is not happening right
>now.
Well, that's not what you asked: to quote
What I want to accomplish is to select a suppliers name in
the combo box on the form and have the table update the suppliers name and
number in separate columns in the table
Do you have a Combo Box on the Form? What is its RowSource (post the SQL if
you would)? What is its Bound Column (the column which will be stored)? What
is its Control Source?
John W. Vinson [MVP]