I used the query written below (created with the help of a MS Access programmer named bill) and it works on my other database with different table names (Microfilmlibrary1 & main1 are the table names used that create the conflict). I've tried so many different avenues but every time i run any variation of this query it gives me the same error 'Type mismatch in expression.' Any idea's on what i might be overlooking or doing wrong?
UPDATE microfilmlibrary1 INNER JOIN main1 ON ([microfilmlibrary1].[Doc_Type]=[main1].[Doc_Type]) AND ([microfilmlibrary1].[Book]=[main1].[Book]) SET main1.Source_ID = [microfilm1].[Source];
UPDATE microfilmlibrary1 INNER JOIN main1 ON ([microfilmlibrary1].[Doc_Type]=[main1].[Doc_Type]) AND ([microfilmlibrary1].[Book]=[main1].[Book]) SET main1.Source_ID = [microfilm1].[Source];