Hi BladeLock9,
I hope you won't mind me barging in here.
Paul,
I tried what you suggested on your site and I was only able to get it to Partly work.
I created a combo box that gets values from a small 4-field table:
[ID (AutoNumber), Preference [Text], Weight [Number], Description [Text]]
The combo box displays the 'Preference' field from the table.
The row source for my combo box is:
Code:
SELECT [ID_Preference_Weight].[ID],
[ID_Preference_Weight].[Preference],
[ID_Preference_Weight].[Weight],
[ID_Preference_Weight].[Description]
FROM ID_Preference_Weight
ORDER BY [ID] DESC;
I can get the two text boxes I have on my form to display either the ID - or the Preference or the Weight - using:
=[Combo8].[Column](0)
=[Combo8].[Column](1)
=[Combo8].[Column](2)
I just cannot get it to display the Description [Text] using this:
=[Combo8].[Column](3)
Any idea what I might be doing wrong?
I hope I am not 'hijacking' this thread by asking this question.