I am going nuts,
I am building a table [Issues].
I have another table [Root Causes].
[Root Causes] has 4 fields, a [ID], [Level 1], [Level 2], [Level 3].
In my [Issue] table, I am wanting to create a field [Root Cause] field to be a drop down box to select from table [Root Causes]. In the ComboBox I want column 1 to be [Root Causes].[ID]. In the ComboBox I want column 2 to be "[Level 1] | [Level 2] | [Level 3]".
Once those two columns are created, this is how I want the [Issues] table to operate... Once in the Root Cause field in the Issues table, I show select the drop down, and I want to see Both Columns (1 and 2). BUT WHEN I CHOOSE A SELECTION, I ONLY WANT TO SEE COLUMN 2 ("[Level 1] | [Level 2] | [Level 3]") APPEAR IN THE TABLE.
HOW DO I DO THIS?
Currently in the [Issues] table, I have the Row Source set to: SELECT [Root_Causes].[ID], [Root_Causes]![Level 1] & " | " & [Root_Causes]![Level 2] & " | " & [Root_Causes]![Level 3] AS RootCause FROM [Root_Causes] ORDER BY [Root_Causes].[ID];
This does in fact allow me to see both column that I want. I just cannot figure out how to see both in the drop down, then only column 2 when a selection is made.
I am building a table [Issues].
I have another table [Root Causes].
[Root Causes] has 4 fields, a [ID], [Level 1], [Level 2], [Level 3].
In my [Issue] table, I am wanting to create a field [Root Cause] field to be a drop down box to select from table [Root Causes]. In the ComboBox I want column 1 to be [Root Causes].[ID]. In the ComboBox I want column 2 to be "[Level 1] | [Level 2] | [Level 3]".
Once those two columns are created, this is how I want the [Issues] table to operate... Once in the Root Cause field in the Issues table, I show select the drop down, and I want to see Both Columns (1 and 2). BUT WHEN I CHOOSE A SELECTION, I ONLY WANT TO SEE COLUMN 2 ("[Level 1] | [Level 2] | [Level 3]") APPEAR IN THE TABLE.
HOW DO I DO THIS?
Currently in the [Issues] table, I have the Row Source set to: SELECT [Root_Causes].[ID], [Root_Causes]![Level 1] & " | " & [Root_Causes]![Level 2] & " | " & [Root_Causes]![Level 3] AS RootCause FROM [Root_Causes] ORDER BY [Root_Causes].[ID];
This does in fact allow me to see both column that I want. I just cannot figure out how to see both in the drop down, then only column 2 when a selection is made.