StephHansen
Programmer
I have a form with several fields including a combo box. This combo box is a lookup to a query based on the statement:
SELECT DISTINCT [qry_items].[ItemDesc] FROM qry_items WHERE itemid=[itemnum];
The lookup occurs fine, but the value it finds is not being stored in the table and when you go back to that record, the data for that combo box is lost and must once again be refreshed.
Any advice on how to make the data stored in the column, "ItemDesc" would be great. I do have it bound to that column. Should I do an Update Statement and if so, how and where?
Thanks! Stephanie Nicholas
Software Engineer
i-Net Strategy
SELECT DISTINCT [qry_items].[ItemDesc] FROM qry_items WHERE itemid=[itemnum];
The lookup occurs fine, but the value it finds is not being stored in the table and when you go back to that record, the data for that combo box is lost and must once again be refreshed.
Any advice on how to make the data stored in the column, "ItemDesc" would be great. I do have it bound to that column. Should I do an Update Statement and if so, how and where?
Thanks! Stephanie Nicholas
Software Engineer
i-Net Strategy