BradCustom
IS-IT--Management
I am working with Access 2007 and in my form I have a combobox which populates an Unbound Textbox with a Specification Rev. I'd like to store the Rev in the same record as the Specification but I'm not sure how to accomplish it.
Here is what I have:
Lookup table: Specification
Store Table: CofC
My Combobox looks up the Specification in the Specification table and based on the selection the Rev Textbox is populated with the Rev.
The combobox is setup as follows:
Control Source: Process
Row Source: SELECT [Specifications].[ID], [Specifications].[Specification], [Specifications].[Rev] FROM [Specifications] ORDER BY [Specification];
This field is stored in a table called CofC
The textbox is setup as follows:
Control Source: =[Combo71].[Column](2)
This field shows the Rev for the Specification.
What I would like to do is to store the text field in the CofC table after a Specification is selected in Combo71.
Thanks for any help.
Here is what I have:
Lookup table: Specification
Store Table: CofC
My Combobox looks up the Specification in the Specification table and based on the selection the Rev Textbox is populated with the Rev.
The combobox is setup as follows:
Control Source: Process
Row Source: SELECT [Specifications].[ID], [Specifications].[Specification], [Specifications].[Rev] FROM [Specifications] ORDER BY [Specification];
This field is stored in a table called CofC
The textbox is setup as follows:
Control Source: =[Combo71].[Column](2)
This field shows the Rev for the Specification.
What I would like to do is to store the text field in the CofC table after a Specification is selected in Combo71.
Thanks for any help.