I dont understand how I could be getting a data type mismatch in a select query.
Code:
Set misc_update = CurrentDb.OpenRecordset("SELECT tbl_instructor_dates.InstructorID, tbl_instructor_dates.InstructordateID, tbl_instructors.Instr_rank, tbl_instructors.Instr_lname, tbl_instructors.Instr_fname, tbl_instructor_dates.[281type], tbl_list_281_types.[281days], tbl_instructor_dates.Follow_up_due, tbl_instructor_dates.follow_up_req, tbl_instructor_dates.last281, tbl_instructor_dates.Next281, tbl_instructor_dates.FISDcw, tbl_instructor_dates.OandTcw, tbl_instructor_dates.TWcw, tbl_instructor_dates.FISDdue, tbl_instructor_dates.OandTdue, tbl_instructor_dates.TWdue, tbl_instructor_dates.REBICcw, tbl_instructor_dates.ISDcw, tbl_instructor_dates.TScw, tbl_list_281_types.[281ID], [tbl_instructors.instr_rank] & "" & [tbl_instructors.instr_lname] & "" & ", " & "" & [tbl_instructors.instr_fname] AS full_name " & _
" FROM (tbl_instructors INNER JOIN tbl_instructor_dates ON tbl_instructors.InstructorID=tbl_instructor_dates.InstructorID) INNER JOIN tbl_list_281_types ON tbl_instructor_dates.[281type]=tbl_list_281_types.[281ID] " & _
" WHERE (((tbl_instructor_dates.InstructorID)=[Forms]![frm_instructor_profile]![Combo13]));")
Set [Forms]![frm_instructor_misc_info_update]![281_type] = [misc_update]![281type]