I have a table called tblCurrentCourses which has a field called CInstructor. This information is dumped from our information system at the university and the instructor names are given in an inconsistent fashion. For instance, some of them will have lastname, first initial; some will only have the last name, etc. I have another table called Professor Mailing List which is very neat and tidy and has the Title of the professor (Dr., Professor, etc.), LastName, FirstName, Campus Department, Room Number. I want to take the information dumped into CInstructor, compare it to Professor Mailing List, and put the neat data into two fields in tblCurrentCourses called CInstLN and CInstFN. The trouble I am having with an update query is that the CInstructor field does not match exactly the LastName field in the table Professor Mailing List. I have tried using Like, DLookup and Instr to remove the last name from CInstructor. None of them seem to work because I have nothing to use to connect the two tables.
Is what I’m asking impossible?