I have a form with a combo box drop down for the users to select which field they want. My drop down has 5 columns that allows the users to decide which field they want. I use 5 to give more description. My problem is, it appears I am only able to store just one of the columns in the table. I would like to write all 5 columns to each their own field in the table. Can this be done? Here is the code from the field Row Source in the combo box on the form. I currently have column 2 bound so its only storing the field "Job".
SELECT Item_Job_List.[Job Description], Item_Job_List.Job, Item_Job_List.[Job category Description], Item_Job_List.[Position Description], Item_Job_List.[Employee Group Text] FROM Item_Job_List ORDER BY [Job], [Job Description], [Employee Group Text];
SELECT Item_Job_List.[Job Description], Item_Job_List.Job, Item_Job_List.[Job category Description], Item_Job_List.[Position Description], Item_Job_List.[Employee Group Text] FROM Item_Job_List ORDER BY [Job], [Job Description], [Employee Group Text];