
Originally Posted by
June7
If you want to show the text value in that query then need to pull in the text field from RootCause table, not the field from Main table.
If you want to save text into Main table:
Make sure field is text type (might be an issue changing type if Access insists there are established relationships). Then if you have real data need to correct the existing entries in records.
Combobox properties:
RowSource: SELECT txtRootCause, atnHERCARootCauseID FROM HERCARootCauseTypesT;
ControlSource: txtRootCause (field in Main table)
BoundColumn: 1
ColumnCount: 2
ColumnWidths: 1";0"
Is CounterMeasure combobox dependent on RootCause combobox? What is name of table that associates RootCause and CounterMeasure? The RowSource for CounterMeasure would reference ID from RootCause combobox. Column index begins with 0:
SELECT txtCounterMeasure FROM tablename WHERE RootCauseID = [RootCause comboboxname].[Column](1);