Pharma Down
Registered User.
- Local time
- Today, 09:23
- Joined
- Dec 1, 2011
- Messages
- 67
Hi
I have created a table (data entered/selected via a form) which includes a drop down box, for 'Ethnicity' to pick a value from another table (ie used Lookup wizard to for options from another table).
The row source looks like this:
SELECT [Lookup_Tbl_ethnicity].
I have created a table (data entered/selected via a form) which includes a drop down box, for 'Ethnicity' to pick a value from another table (ie used Lookup wizard to for options from another table).
The row source looks like this:
SELECT [Lookup_Tbl_ethnicity].
Code:
, [Lookup_Tbl_ethnicity].[Category], [Lookup_Tbl_ethnicity].[Sub-category] FROM Lookup_Tbl_ethnicity ORDER BY [Code];[/COLOR]
Setting the ORDER BY [Code] displays the options in the drop down box in the correct sensible order.
The [B]'Bound Column'[/B] is column 3 - [COLOR=blue]Sub-category[/COLOR]. I assumed that this would be the 'value' stored, searched and displayed... but the table (and related form) display the [COLOR=blue]Code[/COLOR].
Why and please can someone advise me on how to chage this so that the [COLOR=blue]Sub-category[/COLOR] is displayed?!
Thanks
Andy