Kind of a wierd problem using the Select statement on a form;
I have it looking up 3 fields, Ordered by the first and bound by the first.the other 2 are being stored in different fields.
What is weird is that I need to have the first field entered twice in order for it to show up, which means I'm looking up 4 fields.
When I go to store the selection after, only 2 are available... know this confusing; here is the Select Statement;
SELECT [ITEM CODE1].[ItemCode],[ItemCode],[Customer],[Project Description] FROM [ITEM CODE1] ORDER BY [ITEM CODE1].[ItemCode] ;
If I don't type ItemCode twice, it shows Project Description in the drop down box. When I use the code above, only ItemCode and Customer are available to store in other fields;
Me.Customer = Me.ComID.Column(2) which actually stores Customer (should be column 3)
Column(3) and Column(4) won't do anything.
If I haven't confused everyone, I could use some help
I have it looking up 3 fields, Ordered by the first and bound by the first.the other 2 are being stored in different fields.
What is weird is that I need to have the first field entered twice in order for it to show up, which means I'm looking up 4 fields.
When I go to store the selection after, only 2 are available... know this confusing; here is the Select Statement;
SELECT [ITEM CODE1].[ItemCode],[ItemCode],[Customer],[Project Description] FROM [ITEM CODE1] ORDER BY [ITEM CODE1].[ItemCode] ;
If I don't type ItemCode twice, it shows Project Description in the drop down box. When I use the code above, only ItemCode and Customer are available to store in other fields;
Me.Customer = Me.ComID.Column(2) which actually stores Customer (should be column 3)
Column(3) and Column(4) won't do anything.
If I haven't confused everyone, I could use some help
