I am creating a new form to take multiselected tech id numbers and assign a dispatcher to monitor them. Each tech has multiple jobs assigned to him in a table. The list box I created from a query to ID techs with jobs for that day in the table. I have added a combo box with the source for the dispatcher table. This is all on an unbound form. Both fields are working properly at this time. I tried using an update query to update the table for the selected techs jobs with the single dispatcher ID. This didn't return any updated info.
UPDATE Installations SET Installations.Disp_Assign = [Forms]![frmDispatch_Tech_Assign]![cboDispatchers]
WHERE (((Installations.[Tech #])=[Forms]![frmDispatch_Tech_Assign]![lstOpenTech's].[InSelection]));
I have not worked with multiselect much so the code to do this is beyond me at this point. I have read through some strings on here on multiselect but not found what I believe would work.
UPDATE Installations SET Installations.Disp_Assign = [Forms]![frmDispatch_Tech_Assign]![cboDispatchers]
WHERE (((Installations.[Tech #])=[Forms]![frmDispatch_Tech_Assign]![lstOpenTech's].[InSelection]));
I have not worked with multiselect much so the code to do this is beyond me at this point. I have read through some strings on here on multiselect but not found what I believe would work.